2010-07-28 13:55:54 +02:00
|
|
|
{ stdenv, fetchurl, pcre, libxml2, zlib, attr, bzip2 }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2013-04-01 10:14:31 +02:00
|
|
|
name = "lighttpd-1.4.32";
|
2008-09-24 02:42:50 +02:00
|
|
|
|
2010-07-28 13:55:54 +02:00
|
|
|
src = fetchurl {
|
2013-04-01 10:14:31 +02:00
|
|
|
url = http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-1.4.32.tar.xz;
|
|
|
|
sha256 = "1hgd9bi4mrak732h57na89lqg58b1kkchnddij9gawffd40ghs0k";
|
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
|
|
|
};
|
|
|
|
}
|