about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/web/nodejs/v16.nix
blob: 2b2b042ac680fa7b757b88edade8efa9cec4bd26 (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.9.1";
    sha256 = "070k8i9a65r03xdchr200qixv053mim5irfvgg4pl3h57k2hxxcp";
    patches = [ ./disable-darwin-v8-system-instrumentation.patch ];
  }