nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ callPackage, python3, enableNpm ? true }:
2
3let
4 buildNodejs = callPackage ./nodejs.nix {
5 python = python3;
6 };
7in
8buildNodejs {
9 inherit enableNpm;
10 version = "18.2.0";
11 sha256 = "sha256-IwWxXr9VR0dOkFtQAvm6mcfu7wHXOU3+bzhGzGvK1m0=";
12 patches = [
13 ./disable-darwin-v8-system-instrumentation.patch
14 ];
15}