summary refs log tree commit diff
path: root/pkgs/development/web/nodejs/v16.nix
blob: 698108a42b6068b87ac27ac3be3a13090fb36213 (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.11.1";
    sha256 = "0y32mdv8zs35la2bny8d9rxjvj1vr8z079ji1g6ajc2yw96pyn37";
    patches = [ ./disable-darwin-v8-system-instrumentation.patch ];
  }