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

let
  buildNodejs = callPackage ./nodejs.nix {
    inherit openssl;
    python = python3;
  };
in
  buildNodejs {
    inherit enableNpm;
    version = "16.14.2";
    sha256 = "sha256-6SLiFcxo61+U0z6KC2HiyGO3cxzIYAq5VdOCLakP+NE=";
    patches = [
      ./disable-darwin-v8-system-instrumentation.patch
      # Fixes node incorrectly building vendored OpenSSL when we want system OpenSSL.
      # https://github.com/nodejs/node/pull/40965
      (fetchpatch {
        url = "https://github.com/nodejs/node/commit/65119a89586b94b0dd46b45f6d315c9d9f4c9261.patch";
        sha256 = "sha256-dihKYEdK68sQIsnfTRambJ2oZr0htROVbNZlFzSAL+I=";
      })
    ];
  }