about summary refs log tree commit diff
path: root/pkgs/development/web/nodejs/v17.nix
blob: 1c4dcc02a9713e1256b5bc19b9110707c9a7f843 (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.8.0";
  sha256 = "0jsf6sv42rzpizvil7g1gf9bskh8lx0gcxg0yzpr4hk7mx7i90br";
  patches = [
    ./disable-darwin-v8-system-instrumentation.patch
  ];
}