2010-07-28 13:55:54 +02:00
|
|
|
{ stdenv, fetchurl, pcre, libxml2, zlib, attr, bzip2 }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2012-05-15 16:14:33 +02:00
|
|
|
name = "lighttpd-1.4.30";
|
2008-09-24 02:42:50 +02:00
|
|
|
|
2010-07-28 13:55:54 +02:00
|
|
|
src = fetchurl {
|
2012-05-15 16:14:33 +02:00
|
|
|
url = http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-1.4.30.tar.xz;
|
|
|
|
sha256 = "c237692366935b19ef8a6a600b2f3c9b259a9c3107271594c081a45902bd9c9b";
|
2008-09-24 02:42:50 +02:00
|
|
|
};
|
|
|
|
|
2010-07-28 13:55:54 +02:00
|
|
|
buildInputs = [ pcre libxml2 zlib attr bzip2 ];
|
2008-09-24 02:42:50 +02:00
|
|
|
|
|
|
|
meta = {
|
2010-07-28 13:55:54 +02:00
|
|
|
description = "Lightweight high-performance web server";
|
|
|
|
homepage = http://www.lighttpd.net/;
|
|
|
|
license = "BSD";
|
2008-09-24 02:42:50 +02:00
|
|
|
};
|
|
|
|
}
|