Trying to fix GNU readline 6.3 build on Darwin
I copied the stdenv override used for readline 6.2. Peter Simons notified me of the failure: http://hydra.nixos.org/build/9672338
This commit is contained in:
parent
1bb8d12d2f
commit
29dae7ef33
@ -5590,7 +5590,14 @@ let
|
|||||||
else stdenv;
|
else stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
readline63 = callPackage ../development/libraries/readline/readline6.3.nix { };
|
readline63 = callPackage ../development/libraries/readline/readline6.3.nix {
|
||||||
|
stdenv =
|
||||||
|
# On Darwin, Readline uses `-arch_only', which is specific to
|
||||||
|
# Apple-GCC. So give it what it expects.
|
||||||
|
if stdenv.isDarwin
|
||||||
|
then overrideGCC stdenv gccApple
|
||||||
|
else stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
librdf_raptor = callPackage ../development/libraries/librdf/raptor.nix { };
|
librdf_raptor = callPackage ../development/libraries/librdf/raptor.nix { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user