mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 17:23:34 +00:00
libcli: fix build with libxcrypt
This commit is contained in:
parent
5c34a5351a
commit
ce67773d12
@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchFromGitHub, fetchurl }:
|
||||
{ lib, stdenv, fetchFromGitHub, fetchurl, libxcrypt }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libcli";
|
||||
@ -18,6 +18,8 @@ stdenv.mkDerivation rec {
|
||||
})
|
||||
];
|
||||
|
||||
buildInputs = [ libxcrypt ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" "AR=${stdenv.cc.targetPrefix}ar" "PREFIX=$(out)" ];
|
||||
|
Loading…
Reference in New Issue
Block a user