v8_3_16_14: fix on darwin

This was switched to use gcc5 for all platforms due to a mkSnapshot
error, which fixes Linux but currently fails for Darwin. I'm unsure if
there are other runtime failures, but this hasn't been building for
quite some time.
This commit is contained in:
Casey Ransom 2018-02-06 17:53:34 -05:00
parent 91eb41b138
commit 72cd8c09ce

View file

@ -11310,7 +11310,7 @@ with pkgs;
v8_3_16_14 = callPackage ../development/libraries/v8/3.16.14.nix {
inherit (python2Packages) python gyp;
cctools = darwin.cctools;
stdenv = overrideCC stdenv gcc5;
stdenv = if stdenv.isDarwin then stdenv else overrideCC stdenv gcc5;
};
v8_6_x = callPackage ../development/libraries/v8/6_x.nix {