Merge pull request #84599 from doronbehar/nodejs-python3

nodejs: use python3 if possible
This commit is contained in:
Mario Rodas
2020-04-13 07:44:05 -05:00
committed by GitHub
5 changed files with 27 additions and 11 deletions
+5 -2
View File
@@ -1,7 +1,10 @@
{ callPackage, openssl, enableNpm ? true }:
{ callPackage, openssl, icu, python2, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix { inherit openssl; };
buildNodejs = callPackage ./nodejs.nix {
inherit openssl icu;
python = python2;
};
in
buildNodejs {
inherit enableNpm;