2013-09-25 04:18:27 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, pcre, libxml2, zlib, attr, bzip2, which, file
|
2015-01-12 23:36:34 -08:00
|
|
|
, openssl, enableMagnet ? false, lua5_1 ? null
|
2014-03-12 15:02:30 -07:00
|
|
|
, enableMysql ? false, mysql ? null
|
2017-12-19 13:00:19 -08:00
|
|
|
, enableLdap ? false, openldap ? null
|
2013-09-25 04:18:27 -07:00
|
|
|
}:
|
|
|
|
|
2015-01-12 23:36:34 -08:00
|
|
|
assert enableMagnet -> lua5_1 != null;
|
2014-03-12 15:02:30 -07:00
|
|
|
assert enableMysql -> mysql != null;
|
2017-12-19 13:00:19 -08:00
|
|
|
assert enableLdap -> openldap != null;
|
2010-07-28 04:55:54 -07:00
|
|
|
|
2013-11-17 14:06:25 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2018-03-16 22:08:27 -07:00
|
|
|
name = "lighttpd-1.4.49";
|
2008-09-23 17:42:50 -07:00
|
|
|
|
2010-07-28 04:55:54 -07:00
|
|
|
src = fetchurl {
|
2013-11-17 14:06:25 -08:00
|
|
|
url = "http://download.lighttpd.net/lighttpd/releases-1.4.x/${name}.tar.xz";
|
2018-03-16 22:08:27 -07:00
|
|
|
sha256 = "02ff77cpvy1006cwfym38vf78xm18plyj636ll74r7kx2bblkpxf";
|
2008-09-23 17:42:50 -07:00
|
|
|
};
|
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ pcre libxml2 zlib attr bzip2 which file openssl ]
|
2015-01-12 23:36:34 -08:00
|
|
|
++ stdenv.lib.optional enableMagnet lua5_1
|
2017-07-09 08:43:03 -07:00
|
|
|
++ stdenv.lib.optional enableMysql mysql.connector-c
|
2017-12-19 13:00:19 -08:00
|
|
|
++ stdenv.lib.optional enableLdap openldap;
|
2013-04-23 04:30:57 -07:00
|
|
|
|
2013-09-25 04:18:27 -07:00
|
|
|
configureFlags = [ "--with-openssl" ]
|
2014-03-12 15:02:30 -07:00
|
|
|
++ stdenv.lib.optional enableMagnet "--with-lua"
|
2017-12-19 13:00:19 -08:00
|
|
|
++ stdenv.lib.optional enableMysql "--with-mysql"
|
|
|
|
++ stdenv.lib.optional enableLdap "--with-ldap";
|
2013-04-01 06:28:05 -07:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
sed -i "s:/usr/bin/file:${file}/bin/file:g" configure
|
|
|
|
'';
|
2008-09-23 17:42:50 -07:00
|
|
|
|
2017-04-23 10:20:43 -07:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p "$out/share/lighttpd/doc/config"
|
|
|
|
cp -vr doc/config "$out/share/lighttpd/doc/"
|
|
|
|
# Remove files that references needless store paths (dependency bloat)
|
|
|
|
rm "$out/share/lighttpd/doc/config/Makefile"*
|
|
|
|
rm "$out/share/lighttpd/doc/config/conf.d/Makefile"*
|
|
|
|
rm "$out/share/lighttpd/doc/config/vhosts.d/Makefile"*
|
|
|
|
'';
|
|
|
|
|
2013-05-20 10:33:18 -07:00
|
|
|
meta = with stdenv.lib; {
|
2010-07-28 04:55:54 -07:00
|
|
|
description = "Lightweight high-performance web server";
|
|
|
|
homepage = http://www.lighttpd.net/;
|
2014-12-20 15:00:35 -08:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2013-05-20 10:33:18 -07:00
|
|
|
platforms = platforms.linux;
|
2013-11-17 14:06:25 -08:00
|
|
|
maintainers = [ maintainers.bjornfor ];
|
2008-09-23 17:42:50 -07:00
|
|
|
};
|
|
|
|
}
|