mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
john: workaroud for build failure
This commit is contained in:
parent
86e6e8016d
commit
28b1170f49
@ -26,7 +26,13 @@ stdenv.mkDerivation rec {
|
||||
}' run/*.conf
|
||||
'';
|
||||
|
||||
preConfigure = "cd src";
|
||||
preConfigure = ''
|
||||
cd src
|
||||
# Makefile.in depends on AS and LD being set to CC, which is set by default in configure.ac.
|
||||
# This ensures we override the environment variables set in cc-wrapper/setup-hook.sh
|
||||
export AS=$CC
|
||||
export LD=$CC
|
||||
'';
|
||||
configureFlags = [ "--disable-native-macro" ];
|
||||
|
||||
buildInputs = [ openssl nss nspr kerberos gmp zlib libpcap re2 gcc ];
|
||||
|
Loading…
Reference in New Issue
Block a user