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:
Lluís Batlle i Rossell 2014-03-20 16:11:43 +01:00
parent 1bb8d12d2f
commit 29dae7ef33

View file

@ -5590,7 +5590,14 @@ let
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 { };