Merge pull request #34685 from cransom/fix-darwin-v8_3_16_14

v8_3_16_14: fix on darwin
This commit is contained in:
Daiderd Jordan 2018-02-08 21:53:22 +01:00 committed by GitHub
commit 693ab60bb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11320,7 +11320,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 {