31 lines
697 B
Nix
31 lines
697 B
Nix
{
|
|
callPackage,
|
|
fetchpatch2,
|
|
openssl,
|
|
python3,
|
|
enableNpm ? true,
|
|
}:
|
|
|
|
let
|
|
buildNodejs = callPackage ./nodejs.nix {
|
|
inherit openssl;
|
|
python = python3;
|
|
};
|
|
|
|
gypPatches = callPackage ./gyp-patches.nix { } ++ [
|
|
./gyp-patches-pre-v22-import-sys.patch
|
|
];
|
|
in
|
|
buildNodejs {
|
|
inherit enableNpm;
|
|
version = "20.18.1";
|
|
sha256 = "91df43f8ab6c3f7be81522d73313dbdd5634bbca228ef0e6d9369fe0ab8cccd0";
|
|
patches = [
|
|
./configure-emulator.patch
|
|
./configure-armv6-vfpv2.patch
|
|
./disable-darwin-v8-system-instrumentation-node19.patch
|
|
./bypass-darwin-xcrun-node16.patch
|
|
./node-npm-build-npm-package-logic.patch
|
|
./use-correct-env-in-tests.patch
|
|
] ++ gypPatches;
|
|
}
|