mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
9c0e95663a
Changes in this version: http://www.lighttpd.net/2013/9/27/1-4-33/
33 lines
955 B
Nix
33 lines
955 B
Nix
{ stdenv, fetchurl, pkgconfig, pcre, libxml2, zlib, attr, bzip2, which, file
|
|
, openssl, enableMagnet ? false, lua5 ? null
|
|
}:
|
|
|
|
assert enableMagnet -> lua5 != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "lighttpd-1.4.33";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.lighttpd.net/lighttpd/releases-1.4.x/${name}.tar.xz";
|
|
sha256 = "0331671snhhf48qb43mfb6l85v2rc3ryd3qvz56s8z454gfax1i8";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig pcre libxml2 zlib attr bzip2 which file openssl ]
|
|
++ stdenv.lib.optional enableMagnet lua5;
|
|
|
|
configureFlags = [ "--with-openssl" ]
|
|
++ stdenv.lib.optional enableMagnet "--with-lua";
|
|
|
|
preConfigure = ''
|
|
sed -i "s:/usr/bin/file:${file}/bin/file:g" configure
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Lightweight high-performance web server";
|
|
homepage = http://www.lighttpd.net/;
|
|
license = "BSD";
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|