1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 04:31:52 +00:00

v8: use python2

This commit is contained in:
Frederik Rietdijk 2016-11-08 15:26:33 +01:00
parent 5f265dc9c5
commit cc05895fe5

View file

@ -9349,27 +9349,27 @@ in
});
v8_3_14 = callPackage ../development/libraries/v8/3.14.nix {
inherit (pythonPackages) gyp;
inherit (python2Packages) python gyp;
};
v8_3_16_14 = callPackage ../development/libraries/v8/3.16.14.nix {
inherit (pythonPackages) gyp;
inherit (python2Packages) python gyp;
};
v8_3_24_10 = callPackage ../development/libraries/v8/3.24.10.nix {
inherit (pythonPackages) gyp;
inherit (python2Packages) python gyp;
};
v8_3_30_33 = callPackage ../development/libraries/v8/3.30.33.nix {
inherit (pythonPackages) gyp;
inherit (python2Packages) python gyp;
};
v8_4_5 = callPackage ../development/libraries/v8/4.5.nix {
inherit (pythonPackages) gyp;
inherit (python2Packages) python gyp;
};
v8 = callPackage ../development/libraries/v8 {
inherit (pythonPackages) gyp;
inherit (python2Packages) python gyp;
};
v8_static = lowPrio (self.v8.override { static = true; });