2022-09-09 14:08:57 +00:00
|
|
|
{ callPackage, fetchpatch, python3, enableNpm ? true }:
|
2022-04-27 09:35:20 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
buildNodejs = callPackage ./nodejs.nix {
|
|
|
|
python = python3;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
buildNodejs {
|
|
|
|
inherit enableNpm;
|
2022-09-09 14:08:57 +00:00
|
|
|
version = "18.9.0";
|
|
|
|
sha256 = "sha256-x1zImv6tl2eRkArM3gKnsefnYnAvD2+mjqrLAZhNllQ=";
|
2022-04-27 09:35:20 +00:00
|
|
|
patches = [
|
2022-08-21 13:32:41 +00:00
|
|
|
(fetchpatch {
|
2022-09-09 14:08:57 +00:00
|
|
|
# Fixes cross compilation to aarch64-linux by reverting https://github.com/nodejs/node/pull/43200
|
|
|
|
name = "revert-arm64-pointer-auth.patch";
|
|
|
|
url = "https://github.com/nodejs/node/pull/43200/commits/d42c42cc8ac652ab387aa93205aed6ece8a5040a.patch";
|
|
|
|
sha256 = "sha256-ipGzg4lEoftTJbt6sW+0QJO/AZqHvUkFKe0qlum+iLY=";
|
|
|
|
revert = true;
|
2022-08-21 13:32:41 +00:00
|
|
|
})
|
2022-09-09 14:08:57 +00:00
|
|
|
|
|
|
|
./disable-darwin-v8-system-instrumentation.patch
|
2022-04-27 09:35:20 +00:00
|
|
|
];
|
|
|
|
}
|