nodejs-12_x: init at 12.0.0
This commit is contained in:
parent
a66d273e23
commit
4ddbac7037
2 changed files with 17 additions and 0 deletions
10
pkgs/development/web/nodejs/v12.nix
Normal file
10
pkgs/development/web/nodejs/v12.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{ stdenv, callPackage, lib, openssl, enableNpm ? true }:
|
||||
|
||||
let
|
||||
buildNodejs = callPackage ./nodejs.nix { inherit openssl; };
|
||||
in
|
||||
buildNodejs {
|
||||
inherit enableNpm;
|
||||
version = "12.0.0";
|
||||
sha256 = "0y7wrf7id3zawfgqcscbbxmll4h1ij7mwxms14wcywfswm88bi4k";
|
||||
}
|
|
@ -4064,6 +4064,13 @@ in
|
|||
enableNpm = false;
|
||||
openssl = openssl_1_1;
|
||||
};
|
||||
nodejs-12_x = callPackage ../development/web/nodejs/v12.nix {
|
||||
openssl = openssl_1_1;
|
||||
};
|
||||
nodejs-slim-12_x = callPackage ../development/web/nodejs/v12.nix {
|
||||
enableNpm = false;
|
||||
openssl = openssl_1_1;
|
||||
};
|
||||
|
||||
nodePackages_10_x = dontRecurseIntoAttrs (callPackage ../development/node-packages/default-v10.nix {
|
||||
nodejs = pkgs.nodejs-10_x;
|
||||
|
|
Loading…
Reference in a new issue