1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00

lftp: do not look for expat and zlib in /usr/include

This behaviour affects builds without sandboxing.
This commit is contained in:
Orivej Desh 2019-02-20 20:02:34 +00:00
parent 5a4c8092c0
commit d7f4b13ccf

View file

@ -21,10 +21,14 @@ stdenv.mkDerivation rec {
configureFlags = [
"--with-readline=${readline.dev}"
"--with-zlib=${zlib.dev}"
"--without-expat"
];
installFlags = [ "PREFIX=$(out)" ];
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "A file transfer program supporting a number of network protocols";
homepage = https://lftp.tech/;