4265aaa6a0
- https://github.com/nodejs/node/releases/tag/v17.6.0 - https://github.com/nodejs/node/releases/tag/v17.7.0 - https://github.com/nodejs/node/releases/tag/v17.7.1 - https://github.com/nodejs/node/releases/tag/v17.7.2
15 lines
319 B
Nix
15 lines
319 B
Nix
{ callPackage, python3, enableNpm ? true }:
|
|
|
|
let
|
|
buildNodejs = callPackage ./nodejs.nix {
|
|
python = python3;
|
|
};
|
|
in
|
|
buildNodejs {
|
|
inherit enableNpm;
|
|
version = "17.7.2";
|
|
sha256 = "sha256-OuXnTgsWIoz37faIU1mp0uAZrIQ5BsXgGUjXRvq6Sq8=";
|
|
patches = [
|
|
./disable-darwin-v8-system-instrumentation.patch
|
|
];
|
|
}
|