Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
Merge pull request #85762 from marsam/init-nodejs-14_x
Browse files Browse the repository at this point in the history
nodejs-14_x: init at 14.0.0
  • Loading branch information
marsam committed Apr 30, 2020
2 parents d8d14a3 + 573ce56 commit 0dee885
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
14 changes: 14 additions & 0 deletions pkgs/development/web/nodejs/v14.nix
@@ -0,0 +1,14 @@
{ 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";
}
8 changes: 6 additions & 2 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -4784,10 +4784,14 @@ in
nodejs-slim-13_x = callPackage ../development/web/nodejs/v13.nix {
enableNpm = false;
};
nodejs-14_x = callPackage ../development/web/nodejs/v14.nix { };
nodejs-slim-14_x = callPackage ../development/web/nodejs/v14.nix {
enableNpm = false;
};

# Update this when adding the newest nodejs major version!
nodejs_latest = nodejs-13_x;
nodejs-slim_latest = nodejs-slim-13_x;
nodejs_latest = nodejs-14_x;
nodejs-slim_latest = nodejs-slim-14_x;

nodePackages_13_x = dontRecurseIntoAttrs (callPackage ../development/node-packages/default-v13.nix {
nodejs = pkgs.nodejs-13_x;
Expand Down

0 comments on commit 0dee885

Please sign in to comment.