nodejs: use icu63 for nodejs12

This commit is contained in:
Matthew Bauer 2019-06-02 17:34:27 -04:00
parent b30e1d6d9b
commit c3677ed0ef
2 changed files with 4 additions and 2 deletions

View File

@ -1,7 +1,7 @@
{ stdenv, callPackage, lib, openssl, enableNpm ? true }:
{ stdenv, callPackage, lib, openssl, icu, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix { inherit openssl; };
buildNodejs = callPackage ./nodejs.nix { inherit openssl icu; };
in
buildNodejs {
inherit enableNpm;

View File

@ -4201,10 +4201,12 @@ in
};
nodejs-12_x = callPackage ../development/web/nodejs/v12.nix {
openssl = openssl_1_1;
icu = icu63;
};
nodejs-slim-12_x = callPackage ../development/web/nodejs/v12.nix {
enableNpm = false;
openssl = openssl_1_1;
icu = icu63;
};
# Update this when adding the newest nodejs major version!