summary refs log tree commit diff
path: root/pkgs/development/web/nodejs/v17.nix
blob: 20d76246020eb4c05bb7f63666a9293c8e70a65b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ callPackage, python3, enableNpm ? true }:

let
  buildNodejs = callPackage ./nodejs.nix {
    python = python3;
  };
in
buildNodejs {
  inherit enableNpm;
  version = "17.7.2";
  sha256 = "sha256-OuXnTgsWIoz37faIU1mp0uAZrIQ5BsXgGUjXRvq6Sq8=";
  patches = [
    ./disable-darwin-v8-system-instrumentation.patch
  ];
}