nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05-pre 14 lines 357 B view raw
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 }