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