Merge pull request #120997 from jdelStrother/node-icu69

nodejs: fix build by pinning to icu68
This commit is contained in:
Mario Rodas
2021-04-30 17:26:06 -05:00
committed by GitHub
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
{ callPackage, openssl, icu, python2, lib, stdenv, enableNpm ? true }: { callPackage, icu68, python2, lib, stdenv, enableNpm ? true }:
let let
buildNodejs = callPackage ./nodejs.nix { buildNodejs = callPackage ./nodejs.nix {
inherit openssl icu; icu = icu68;
python = python2; python = python2;
}; };
in in
+2 -2
View File
@@ -1,8 +1,8 @@
{ callPackage, openssl, python3, lib, stdenv, enableNpm ? true }: { callPackage, icu68, python3, lib, stdenv, enableNpm ? true }:
let let
buildNodejs = callPackage ./nodejs.nix { buildNodejs = callPackage ./nodejs.nix {
inherit openssl; icu = icu68;
python = python3; python = python3;
}; };
in in
+2 -2
View File
@@ -1,8 +1,8 @@
{ callPackage, openssl, python3, enableNpm ? true }: { callPackage, icu68, python3, enableNpm ? true }:
let let
buildNodejs = callPackage ./nodejs.nix { buildNodejs = callPackage ./nodejs.nix {
inherit openssl; icu = icu68;
python = python3; python = python3;
}; };
in in