nodejs-19_x: 19.2.0 -> 19.4.0

This commit is contained in:
Anthony Roussel 2023-01-08 23:03:08 +01:00
parent 7146e2a152
commit ba5367b708
No known key found for this signature in database
GPG key ID: 9DC4987B1A55E75E

View file

@ -6,15 +6,14 @@ let
python = python3;
};
npmPatches = callPackage ./npm-patches.nix { };
in
buildNodejs {
inherit enableNpm;
version = "19.2.0";
sha256 = "sha256-CVaw/wHy9jg4J+kWpgSBWc4r2wUhf2VKj/9U6BFtwX4=";
version = "19.4.0";
sha256 = "0qdj67dgxbjpllm2z9vm46c50s3dqk8a34hbp81vsa7mf3b42182";
patches = [
./revert-arm64-pointer-auth.patch
./disable-darwin-v8-system-instrumentation-node19.patch
./bypass-darwin-xcrun-node16.patch
] ++ npmPatches;
];
}