nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 16 lines 366 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.15.0"; 12 sha256 = "sha256-oPgS78Q/eDIeygiVeWCkj15r+XAE1QWMjdOwPGRupPc="; 13 patches = [ 14 ./disable-darwin-v8-system-instrumentation.patch 15 ]; 16 }