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

let
  buildNodejs = callPackage ./nodejs.nix {
    inherit openssl;
    python = python3;
  };
in
  buildNodejs {
    inherit enableNpm;
    version = "16.15.0";
    sha256 = "sha256-oPgS78Q/eDIeygiVeWCkj15r+XAE1QWMjdOwPGRupPc=";
    patches = [
      ./disable-darwin-v8-system-instrumentation.patch
    ];
  }