2013-09-25 11:18:27 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, pcre, libxml2, zlib, attr, bzip2, which, file
|
2015-01-13 07:36:34 +00:00
|
|
|
, openssl, enableMagnet ? false, lua5_1 ? null
|
2014-03-12 22:02:30 +00:00
|
|
|
, enableMysql ? false, mysql ? null
|
2013-09-25 11:18:27 +00:00
|
|
|
}:
|
|
|
|
|
2015-01-13 07:36:34 +00:00
|
|
|
assert enableMagnet -> lua5_1 != null;
|
2014-03-12 22:02:30 +00:00
|
|
|
assert enableMysql -> mysql != null;
|
2010-07-28 11:55:54 +00:00
|
|
|
|
2013-11-17 22:06:25 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-09-24 01:50:04 +00:00
|
|
|
name = "lighttpd-1.4.41";
|
2008-09-24 00:42:50 +00:00
|
|
|
|
2010-07-28 11:55:54 +00:00
|
|
|
src = fetchurl {
|
2013-11-17 22:06:25 +00:00
|
|
|
url = "http://download.lighttpd.net/lighttpd/releases-1.4.x/${name}.tar.xz";
|
2016-09-24 01:50:04 +00:00
|
|
|
sha256 = "0v3b6hp8hfwg7kmmxs64hdn9iqkql5qjv2389wl7pp6nyqz3ik2b";
|
2008-09-24 00:42:50 +00:00
|
|
|
};
|
|
|
|
|
2013-09-25 11:18:27 +00:00
|
|
|
buildInputs = [ pkgconfig pcre libxml2 zlib attr bzip2 which file openssl ]
|
2015-01-13 07:36:34 +00:00
|
|
|
++ stdenv.lib.optional enableMagnet lua5_1
|
2015-04-01 23:39:50 +00:00
|
|
|
++ stdenv.lib.optional enableMysql mysql.lib;
|
2013-04-23 11:30:57 +00:00
|
|
|
|
2013-09-25 11:18:27 +00:00
|
|
|
configureFlags = [ "--with-openssl" ]
|
2014-03-12 22:02:30 +00:00
|
|
|
++ stdenv.lib.optional enableMagnet "--with-lua"
|
|
|
|
++ stdenv.lib.optional enableMysql "--with-mysql";
|
2013-04-01 13:28:05 +00:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
sed -i "s:/usr/bin/file:${file}/bin/file:g" configure
|
|
|
|
'';
|
2008-09-24 00:42:50 +00:00
|
|
|
|
2013-05-20 17:33:18 +00:00
|
|
|
meta = with stdenv.lib; {
|
2010-07-28 11:55:54 +00:00
|
|
|
description = "Lightweight high-performance web server";
|
|
|
|
homepage = http://www.lighttpd.net/;
|
2014-12-20 23:00:35 +00:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2013-05-20 17:33:18 +00:00
|
|
|
platforms = platforms.linux;
|
2013-11-17 22:06:25 +00:00
|
|
|
maintainers = [ maintainers.bjornfor ];
|
2008-09-24 00:42:50 +00:00
|
|
|
};
|
|
|
|
}
|