nodejs: Fix build by pinning to icu68
Node 12/14/15 don't build against icu69, failing with: ``` ../deps/v8/src/objects/js-list-format.cc:172:55: error: 'createInstance' is a private member of 'icu_69::ListFormatter' ```
This commit is contained in:
parent
4021d9d461
commit
67be794a7f
@ -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…
x
Reference in New Issue
Block a user