nixpkgs/pkgs/servers/http/lighttpd/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

88 lines
3.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, buildPackages, fetchurl, pkg-config, pcre2, libxml2, zlib, bzip2, which, file
, fetchpatch
, openssl
, enableDbi ? false, libdbi
, enableMagnet ? false, lua5_1
, enableMysql ? false, libmysqlclient
, enableLdap ? false, openldap
, enablePam ? false, linux-pam
, enableSasl ? false, cyrus_sasl
, enableWebDAV ? false, sqlite, libuuid
, enableExtendedAttrs ? false, attr
2018-08-08 21:29:43 +00:00
, perl
, nixosTests
}:
stdenv.mkDerivation rec {
pname = "lighttpd";
2022-08-11 05:58:48 +00:00
version = "1.4.66";
src = fetchurl {
url = "https://download.lighttpd.net/lighttpd/releases-${lib.versions.majorMinor version}.x/${pname}-${version}.tar.xz";
2022-08-11 05:58:48 +00:00
sha256 = "sha256-R6xuYCcaoBluZUctAtAZVW3HxtCd87Zd8sGraGY0jjs=";
};
2018-08-08 21:29:43 +00:00
postPatch = ''
patchShebangs tests
# 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
2022-01-15 20:36:36 +00:00
# it's difficult to prevent this test from trying to use /var/tmp (which
# the sandbox doesn't have) so until libredirect has support for mkstemp
# calls it's easiest to disable it
sed -i '/test_mod_ssi/d' src/t/test_mod.c
2018-08-08 21:29:43 +00:00
'';
2019-05-08 07:43:00 +00:00
depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ pcre2 pcre2.dev libxml2 zlib bzip2 which file openssl ]
++ lib.optional enableDbi libdbi
2021-01-15 07:07:56 +00:00
++ lib.optional enableMagnet lua5_1
++ lib.optional enableMysql libmysqlclient
++ lib.optional enableLdap openldap
++ lib.optional enablePam linux-pam
++ lib.optional enableSasl cyrus_sasl
2021-01-15 07:07:56 +00:00
++ lib.optional enableWebDAV sqlite
++ lib.optional enableWebDAV libuuid;
configureFlags = [ "--with-openssl" ]
++ lib.optional enableDbi "--with-dbi"
2021-01-15 07:07:56 +00:00
++ lib.optional enableMagnet "--with-lua"
++ lib.optional enableMysql "--with-mysql"
++ lib.optional enableLdap "--with-ldap"
++ lib.optional enablePam "--with-pam"
++ lib.optional enableSasl "--with-sasl"
2021-01-15 07:07:56 +00:00
++ lib.optional enableWebDAV "--with-webdav-props"
++ lib.optional enableWebDAV "--with-webdav-locks"
++ lib.optional enableExtendedAttrs "--with-attr";
preConfigure = ''
export PATH=$PATH:${pcre2.dev}/bin
sed -i "s:/usr/bin/file:${file}/bin/file:g" configure
'';
2018-08-08 21:29:43 +00:00
checkInputs = [ perl ];
doCheck = true;
2018-08-08 21:29:43 +00: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"*
'';
passthru.tests = {
inherit (nixosTests) lighttpd;
};
meta = with lib; {
description = "Lightweight high-performance web server";
homepage = "http://www.lighttpd.net/";
2021-01-15 07:07:56 +00:00
license = lib.licenses.bsd3;
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ bjornfor brecht ];
};
}