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
commit f130655d5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View file

@ -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

View file

@ -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

View file

@ -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