nodejs-16_x: init at 16.0.0
https://github.com/nodejs/node/releases/tag/v16.0.0
This commit is contained in:
parent
4f8cfd1c2e
commit
e69cbd222a
13
pkgs/development/web/nodejs/v16.nix
Normal file
13
pkgs/development/web/nodejs/v16.nix
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{ callPackage, openssl, python3, enableNpm ? true }:
|
||||||
|
|
||||||
|
let
|
||||||
|
buildNodejs = callPackage ./nodejs.nix {
|
||||||
|
inherit openssl;
|
||||||
|
python = python3;
|
||||||
|
};
|
||||||
|
in
|
||||||
|
buildNodejs {
|
||||||
|
inherit enableNpm;
|
||||||
|
version = "16.0.0";
|
||||||
|
sha256 = "00mada0vvybizygwhzsq6gcz0m2k864lfiiqqlnw8gcc3q8r1js7";
|
||||||
|
}
|
@ -6181,9 +6181,13 @@ in
|
|||||||
nodejs-slim-15_x = callPackage ../development/web/nodejs/v15.nix {
|
nodejs-slim-15_x = callPackage ../development/web/nodejs/v15.nix {
|
||||||
enableNpm = false;
|
enableNpm = false;
|
||||||
};
|
};
|
||||||
|
nodejs-16_x = callPackage ../development/web/nodejs/v16.nix { };
|
||||||
|
nodejs-slim-16_x = callPackage ../development/web/nodejs/v16.nix {
|
||||||
|
enableNpm = false;
|
||||||
|
};
|
||||||
# Update this when adding the newest nodejs major version!
|
# Update this when adding the newest nodejs major version!
|
||||||
nodejs_latest = nodejs-15_x;
|
nodejs_latest = nodejs-16_x;
|
||||||
nodejs-slim_latest = nodejs-slim-15_x;
|
nodejs-slim_latest = nodejs-slim-16_x;
|
||||||
|
|
||||||
nodePackages_latest = dontRecurseIntoAttrs (callPackage ../development/node-packages/default.nix {
|
nodePackages_latest = dontRecurseIntoAttrs (callPackage ../development/node-packages/default.nix {
|
||||||
nodejs = pkgs.nodejs_latest;
|
nodejs = pkgs.nodejs_latest;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user