nixpkgs/pkgs/development/web/nodejs/v22.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
601 B
Nix
Raw Permalink Normal View History

2024-09-22 03:14:01 -06:00
{ callPackage, fetchpatch2, openssl, python3, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix {
inherit openssl;
python = python3;
};
in
buildNodejs {
inherit enableNpm;
2024-10-28 03:53:34 -06:00
version = "22.10.0";
sha256 = "3180710d3130ad9df01466abf010e408d41b374be54301d1480d10eca73558e0";
patches = [
./configure-emulator.patch
2024-07-16 19:57:33 -06:00
./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
./bin-sh-node-run-v22.patch
2024-10-28 03:53:34 -06:00
];
}