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

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