nodejs-15_x: init at 15.0.0

Changelog: https://github.com/nodejs/node/releases/tag/v15.0.0
This commit is contained in:
Lee Henson
2020-10-20 21:16:09 +01:00
parent 6dbdd13e8a
commit cd3c2b1fad
2 changed files with 19 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
{ callPackage, openssl, python3, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix {
inherit openssl;
python = python3;
};
in
buildNodejs {
inherit enableNpm;
version = "15.0.0";
sha256 = "0yrlzxrqb5j0qyj4qgzfxyvvd7c76hpslkiswj3cjcq70qbql4zn";
}