mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 08:05:40 +00:00
573ce569cd
Changelog: - https://github.com/nodejs/node/releases/tag/v14.0.0 - https://github.com/nodejs/node/releases/tag/v14.1.0
15 lines
312 B
Nix
15 lines
312 B
Nix
{ callPackage, openssl, icu66, python3, enableNpm ? true }:
|
|
|
|
let
|
|
buildNodejs = callPackage ./nodejs.nix {
|
|
inherit openssl;
|
|
icu = icu66;
|
|
python = python3;
|
|
};
|
|
in
|
|
buildNodejs {
|
|
inherit enableNpm;
|
|
version = "14.1.0";
|
|
sha256 = "0pw39628y8qi2jagmmnfj0fkcbv00qcd1cqybiprf1v22hhij44n";
|
|
}
|