mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
lighttpd: make tests run, but disable
This commit is contained in:
parent
7cd8fdbf63
commit
6c1a9d9d79
1 changed files with 8 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
|||
, enableMysql ? false, mysql ? null
|
||||
, enableLdap ? false, openldap ? null
|
||||
, enableWebDAV ? true, sqlite ? null, libuuid ? null
|
||||
, perl
|
||||
}:
|
||||
|
||||
assert enableMagnet -> lua5_1 != null;
|
||||
|
@ -19,6 +20,10 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "02ff77cpvy1006cwfym38vf78xm18plyj636ll74r7kx2bblkpxf";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
patchShebangs tests
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ pcre libxml2 zlib attr bzip2 which file openssl ]
|
||||
++ stdenv.lib.optional enableMagnet lua5_1
|
||||
|
@ -38,6 +43,9 @@ stdenv.mkDerivation rec {
|
|||
sed -i "s:/usr/bin/file:${file}/bin/file:g" configure
|
||||
'';
|
||||
|
||||
checkInputs = [ perl ];
|
||||
doCheck = false; # fails 2 tests
|
||||
|
||||
postInstall = ''
|
||||
mkdir -p "$out/share/lighttpd/doc/config"
|
||||
cp -vr doc/config "$out/share/lighttpd/doc/"
|
||||
|
|
Loading…
Reference in a new issue