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;