mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 09:34:36 +00:00
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
|
||||
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 New Issue
Block a user