Skip to content

Commit

Permalink
v8: use python2
Browse files Browse the repository at this point in the history
  • Loading branch information
FRidh committed Nov 8, 2016
1 parent 5f265dc commit cc05895
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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; });
Expand Down

0 comments on commit cc05895

Please sign in to comment.