Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 11 lines 328 B view raw
1{ stdenv, callPackage, lib, enableNpm ? true }: 2 3let 4 buildNodejs = callPackage ./nodejs.nix {}; 5in 6 buildNodejs { 7 inherit enableNpm; 8 version = "8.11.3"; 9 sha256 = "1q3fc791ng1sgk0i5qnxpxri7235nkjm50zx1z34c759vhgpaz2p"; 10 patches = lib.optionals stdenv.isDarwin [ ./no-xcode-v7.patch ./no-xcodebuild.patch ]; 11 }