2019-05-08 09:43:00 +02:00
|
|
|
{ stdenv, buildPackages, fetchurl, pkgconfig, pcre, libxml2, zlib, bzip2, which, file
|
2015-01-13 08:36:34 +01:00
|
|
|
, openssl, enableMagnet ? false, lua5_1 ? null
|
2019-09-22 09:38:09 +02:00
|
|
|
, enableMysql ? false, libmysqlclient ? null
|
2017-12-19 22:00:19 +01:00
|
|
|
, enableLdap ? false, openldap ? null
|
2019-01-06 10:58:27 +01:00
|
|
|
, enableWebDAV ? false, sqlite ? null, libuuid ? null
|
2019-01-06 11:03:49 +01:00
|
|
|
, enableExtendedAttrs ? false, attr ? null
|
2018-08-08 23:29:43 +02:00
|
|
|
, perl
|
2013-09-25 13:18:27 +02:00
|
|
|
}:
|
|
|
|
|
2015-01-13 08:36:34 +01:00
|
|
|
assert enableMagnet -> lua5_1 != null;
|
2019-09-22 09:38:09 +02:00
|
|
|
assert enableMysql -> libmysqlclient != null;
|
2017-12-19 22:00:19 +01:00
|
|
|
assert enableLdap -> openldap != null;
|
2018-05-18 01:35:31 +02:00
|
|
|
assert enableWebDAV -> sqlite != null;
|
|
|
|
assert enableWebDAV -> libuuid != null;
|
2019-01-06 11:03:49 +01:00
|
|
|
assert enableExtendedAttrs -> attr != null;
|
2010-07-28 13:55:54 +02:00
|
|
|
|
2013-11-17 23:06:25 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2020-12-02 16:06:14 +01:00
|
|
|
name = "lighttpd-1.4.56";
|
2008-09-24 02:42:50 +02:00
|
|
|
|
2010-07-28 13:55:54 +02:00
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://download.lighttpd.net/lighttpd/releases-1.4.x/${name}.tar.xz";
|
2020-12-02 16:06:14 +01:00
|
|
|
sha256 = "0xyzahrkmldwskwgjgj4dc3rmfmgqiwwr9y7jfhqpbp8g76q9kp4";
|
2008-09-24 02:42:50 +02:00
|
|
|
};
|
|
|
|
|
2018-08-08 23:29:43 +02:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs tests
|
2019-01-11 11:19:59 +01:00
|
|
|
# Linux sandbox has an empty hostname and not /etc/hosts, which fails some tests
|
|
|
|
sed -ire '/[$]self->{HOSTNAME} *=/i if(length($name)==0) { $name = "127.0.0.1" }' tests/LightyTest.pm
|
2018-08-08 23:29:43 +02:00
|
|
|
'';
|
|
|
|
|
2019-05-08 09:43:00 +02:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2019-05-08 09:43:00 +02:00
|
|
|
buildInputs = [ pcre pcre.dev libxml2 zlib bzip2 which file openssl ]
|
2015-01-13 08:36:34 +01:00
|
|
|
++ stdenv.lib.optional enableMagnet lua5_1
|
2019-09-22 09:38:09 +02:00
|
|
|
++ stdenv.lib.optional enableMysql libmysqlclient
|
2018-05-18 01:35:31 +02:00
|
|
|
++ stdenv.lib.optional enableLdap openldap
|
|
|
|
++ stdenv.lib.optional enableWebDAV sqlite
|
|
|
|
++ stdenv.lib.optional enableWebDAV libuuid;
|
2013-04-23 13:30:57 +02:00
|
|
|
|
2013-09-25 13:18:27 +02:00
|
|
|
configureFlags = [ "--with-openssl" ]
|
2014-03-12 23:02:30 +01:00
|
|
|
++ stdenv.lib.optional enableMagnet "--with-lua"
|
2017-12-19 22:00:19 +01:00
|
|
|
++ stdenv.lib.optional enableMysql "--with-mysql"
|
2018-05-18 01:35:31 +02:00
|
|
|
++ stdenv.lib.optional enableLdap "--with-ldap"
|
|
|
|
++ stdenv.lib.optional enableWebDAV "--with-webdav-props"
|
2019-01-06 11:03:49 +01:00
|
|
|
++ stdenv.lib.optional enableWebDAV "--with-webdav-locks"
|
|
|
|
++ stdenv.lib.optional enableExtendedAttrs "--with-attr";
|
2013-04-01 15:28:05 +02:00
|
|
|
|
|
|
|
preConfigure = ''
|
2019-05-08 09:43:00 +02:00
|
|
|
export PATH=$PATH:${pcre.dev}/bin
|
2013-04-01 15:28:05 +02:00
|
|
|
sed -i "s:/usr/bin/file:${file}/bin/file:g" configure
|
|
|
|
'';
|
2008-09-24 02:42:50 +02:00
|
|
|
|
2018-08-08 23:29:43 +02:00
|
|
|
checkInputs = [ perl ];
|
2019-01-06 11:05:30 +01:00
|
|
|
doCheck = true;
|
2018-08-08 23:29:43 +02:00
|
|
|
|
2017-04-23 19:20:43 +02: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 19:33:18 +02:00
|
|
|
meta = with stdenv.lib; {
|
2010-07-28 13:55:54 +02:00
|
|
|
description = "Lightweight high-performance web server";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://www.lighttpd.net/";
|
2014-12-21 00:00:35 +01:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2019-01-06 11:03:49 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2013-11-17 23:06:25 +01:00
|
|
|
maintainers = [ maintainers.bjornfor ];
|
2008-09-24 02:42:50 +02:00
|
|
|
};
|
|
|
|
}
|