https://github.com/nodejs/node/releases/tag/v16.4.0 (cherry picked from commit c50bd80253a3066af270466909f0f53b0adc4b04)
14 lines
288 B
Nix
14 lines
288 B
Nix
{ callPackage, openssl, python3, enableNpm ? true }:
|
|
|
|
let
|
|
buildNodejs = callPackage ./nodejs.nix {
|
|
inherit openssl;
|
|
python = python3;
|
|
};
|
|
in
|
|
buildNodejs {
|
|
inherit enableNpm;
|
|
version = "16.4.0";
|
|
sha256 = "07f8g3hs0v7nsdvzlsr1p4pzgb04qn54pnhmbdsgmmb41cp227pr";
|
|
}
|