about summary refs log tree commit diff
path: root/pkgs/development/web/nodejs/v16.nix
blob: 9cbe093c7a390509e05eae8093c011d5eb91f9fb (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.12.0";
    sha256 = "1b3bschfa7946jwyqp3nmbdv7ap3rl4p7h50b9bac08981m0lqjz";
    patches = [ ./disable-darwin-v8-system-instrumentation.patch ];
  }