mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
935ddcdab9
https://github.com/nodejs/node/releases/tag/v17.0.0 https://github.com/nodejs/node/releases/tag/v17.0.1
14 lines
314 B
Nix
14 lines
314 B
Nix
{ callPackage, python3, enableNpm ? true }:
|
|
|
|
let
|
|
buildNodejs = callPackage ./nodejs.nix {
|
|
python = python3;
|
|
};
|
|
in
|
|
buildNodejs {
|
|
inherit enableNpm;
|
|
version = "17.0.1";
|
|
sha256 = "071lhqbn103rnn8avqmqwnn2k4yqgcymx624f23k8z6bfbw81i3f";
|
|
patches = [ ./disable-darwin-v8-system-instrumentation.patch ];
|
|
}
|