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