From 0b5a5c52d6ac995d161405984e67dee49a8f2540 Mon Sep 17 00:00:00 2001 From: Andrew Newman Date: Wed, 8 May 2019 10:43:00 +0300 Subject: lighttpd: fix crosscompilation --- pkgs/servers/http/lighttpd/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'pkgs/servers') diff --git a/pkgs/servers/http/lighttpd/default.nix b/pkgs/servers/http/lighttpd/default.nix index 2993809c5563..318f291689f5 100644 --- a/pkgs/servers/http/lighttpd/default.nix +++ b/pkgs/servers/http/lighttpd/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, pcre, libxml2, zlib, bzip2, which, file +{ stdenv, buildPackages, fetchurl, pkgconfig, pcre, libxml2, zlib, bzip2, which, file , openssl, enableMagnet ? false, lua5_1 ? null , enableMysql ? false, mysql ? null , enableLdap ? false, openldap ? null @@ -28,8 +28,10 @@ stdenv.mkDerivation rec { sed -ire '/[$]self->{HOSTNAME} *=/i if(length($name)==0) { $name = "127.0.0.1" }' tests/LightyTest.pm ''; + depsBuildBuild = [ buildPackages.stdenv.cc ]; + nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ pcre libxml2 zlib bzip2 which file openssl ] + buildInputs = [ pcre pcre.dev libxml2 zlib bzip2 which file openssl ] ++ stdenv.lib.optional enableMagnet lua5_1 ++ stdenv.lib.optional enableMysql mysql.connector-c ++ stdenv.lib.optional enableLdap openldap @@ -45,6 +47,7 @@ stdenv.mkDerivation rec { ++ stdenv.lib.optional enableExtendedAttrs "--with-attr"; preConfigure = '' + export PATH=$PATH:${pcre.dev}/bin sed -i "s:/usr/bin/file:${file}/bin/file:g" configure ''; -- cgit 1.4.1