Merge pull request #120997 from jdelStrother/node-icu69
nodejs: fix build by pinning to icu68
This commit is contained in:
commit
f130655d5e
3 changed files with 6 additions and 6 deletions
|
@ -1,8 +1,8 @@
|
|||
{ callPackage, openssl, icu, python2, lib, stdenv, enableNpm ? true }:
|
||||
{ callPackage, icu68, python2, lib, stdenv, enableNpm ? true }:
|
||||
|
||||
let
|
||||
buildNodejs = callPackage ./nodejs.nix {
|
||||
inherit openssl icu;
|
||||
icu = icu68;
|
||||
python = python2;
|
||||
};
|
||||
in
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{ callPackage, openssl, python3, lib, stdenv, enableNpm ? true }:
|
||||
{ callPackage, icu68, python3, lib, stdenv, enableNpm ? true }:
|
||||
|
||||
let
|
||||
buildNodejs = callPackage ./nodejs.nix {
|
||||
inherit openssl;
|
||||
icu = icu68;
|
||||
python = python3;
|
||||
};
|
||||
in
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{ callPackage, openssl, python3, enableNpm ? true }:
|
||||
{ callPackage, icu68, python3, enableNpm ? true }:
|
||||
|
||||
let
|
||||
buildNodejs = callPackage ./nodejs.nix {
|
||||
inherit openssl;
|
||||
icu = icu68;
|
||||
python = python3;
|
||||
};
|
||||
in
|
||||
|
|
Loading…
Reference in a new issue