Merge pull request #120997 from jdelStrother/node-icu69
nodejs: fix build by pinning to icu68
This commit is contained in:
commit
f130655d5e
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user