Merge pull request #84599 from doronbehar/nodejs-python3
nodejs: use python3 if possible
This commit is contained in:
@@ -1,7 +1,10 @@
|
||||
{ callPackage, openssl, icu, enableNpm ? true }:
|
||||
{ callPackage, openssl, icu, python2, enableNpm ? true }:
|
||||
|
||||
let
|
||||
buildNodejs = callPackage ./nodejs.nix { inherit openssl icu; };
|
||||
buildNodejs = callPackage ./nodejs.nix {
|
||||
inherit openssl icu;
|
||||
python = python2;
|
||||
};
|
||||
in
|
||||
buildNodejs {
|
||||
inherit enableNpm;
|
||||
|
||||
Reference in New Issue
Block a user