nodejs-14_x: 14.5.0 -> 14.6.0

https://github.com/nodejs/node/releases/tag/v14.6.0
This commit is contained in:
Mario Rodas 2020-07-22 19:55:28 -05:00
parent fa2b5215d0
commit 71532e92db
No known key found for this signature in database
GPG Key ID: 325649BCA6D53027

View File

@ -1,14 +1,14 @@
{ callPackage, openssl, icu66, python3, enableNpm ? true }: { callPackage, openssl, icu67, python3, enableNpm ? true }:
let let
buildNodejs = callPackage ./nodejs.nix { buildNodejs = callPackage ./nodejs.nix {
inherit openssl; inherit openssl;
icu = icu66; icu = icu67;
python = python3; python = python3;
}; };
in in
buildNodejs { buildNodejs {
inherit enableNpm; inherit enableNpm;
version = "14.5.0"; version = "14.6.0";
sha256 = "1d6w7ycdiqbkip7m6m8xly31qgx7ywakzvrnqdq8ini5sricjlgb"; sha256 = "153a07ffrmvwbsc78wrc0xnwymmzrhva0kn6mgnfi3086v3h1wss";
} }