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

let
  buildNodejs = callPackage ./nodejs.nix {
    inherit openssl;
    python = python3;
  };

in
buildNodejs {
  inherit enableNpm;
  version = "19.8.1";
  sha256 = "sha256-JBHljh1GRMTUqCvPMGG5XmcsnyFN4BfULwMs+uB0Ycs=";
  patches = [
    ./revert-arm64-pointer-auth.patch
    ./disable-darwin-v8-system-instrumentation-node19.patch
    ./bypass-darwin-xcrun-node16.patch
  ];
}