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

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