about summary refs log tree commit diff
path: root/pkgs/development/web/nodejs/v18.nix
blob: a2c10d1b96b21d7defb45014ba2bb3dee8d35638 (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 = "18.4.0";
  sha256 = "sha256-lNbxmpcDYfjIrRdFBgQJU4n1HKagDc3lnCHzc+lau7U=";
  patches = [
    ./disable-darwin-v8-system-instrumentation.patch
  ];
}