summary refs log tree commit diff
path: root/pkgs/development/web/nodejs/v18.nix
blob: 6acf2e3cbe703a7f4ccf52bec9f70a18d0610e06 (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.3.0";
  sha256 = "sha256-P2lKgWJuUFfNpXiY53HSE8/FpkmFX0zxxvbNFQxTBiU=";
  patches = [
    ./disable-darwin-v8-system-instrumentation.patch
  ];
}