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