forked from mirrors/nixpkgs
libfilezilla: fix build with libxcrypt
This commit is contained in:
parent
fe91064c22
commit
e963dde643
|
@ -6,6 +6,7 @@
|
||||||
, nettle
|
, nettle
|
||||||
, pkg-config
|
, pkg-config
|
||||||
, libiconv
|
, libiconv
|
||||||
|
, libxcrypt
|
||||||
, ApplicationServices
|
, ApplicationServices
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -20,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
||||||
|
|
||||||
buildInputs = [ gettext gnutls nettle ]
|
buildInputs = [ gettext gnutls nettle libxcrypt ]
|
||||||
++ lib.optionals stdenv.isDarwin [ libiconv ApplicationServices ];
|
++ lib.optionals stdenv.isDarwin [ libiconv ApplicationServices ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
Loading…
Reference in a new issue