lighttpd: update 1.4.32 -> 1.4.33

Changes in this version: http://www.lighttpd.net/2013/9/27/1-4-33/
This commit is contained in:
Bjørn Forsman 2013-11-17 23:06:25 +01:00
parent 21e86d498f
commit 9c0e95663a

View File

@ -4,12 +4,12 @@
assert enableMagnet -> lua5 != null; assert enableMagnet -> lua5 != null;
stdenv.mkDerivation { stdenv.mkDerivation rec {
name = "lighttpd-1.4.32"; name = "lighttpd-1.4.33";
src = fetchurl { src = fetchurl {
url = http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-1.4.32.tar.xz; url = "http://download.lighttpd.net/lighttpd/releases-1.4.x/${name}.tar.xz";
sha256 = "1hgd9bi4mrak732h57na89lqg58b1kkchnddij9gawffd40ghs0k"; sha256 = "0331671snhhf48qb43mfb6l85v2rc3ryd3qvz56s8z454gfax1i8";
}; };
buildInputs = [ pkgconfig pcre libxml2 zlib attr bzip2 which file openssl ] buildInputs = [ pkgconfig pcre libxml2 zlib attr bzip2 which file openssl ]
@ -27,6 +27,6 @@ stdenv.mkDerivation {
homepage = http://www.lighttpd.net/; homepage = http://www.lighttpd.net/;
license = "BSD"; license = "BSD";
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [maintainers.bjornfor]; maintainers = [ maintainers.bjornfor ];
}; };
} }