about summary refs log tree commit diff
path: root/pkgs/development/web
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2024-04-24 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2024-04-24 04:20:00 +0000
commit12c19fa317f73b5aea5e32f60e2cd00222e2e831 (patch)
tree25e11752341feb62024d1c19bc4d9363d04905db /pkgs/development/web
parentba733f8000925e837e30765f273fec153426403d (diff)
nodejs_21: drop
Node.js 21 reachs EOL in 2024-06-01
Diffstat (limited to 'pkgs/development/web')
-rw-r--r--pkgs/development/web/nodejs/v21.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/pkgs/development/web/nodejs/v21.nix b/pkgs/development/web/nodejs/v21.nix
deleted file mode 100644
index dedda892a9180..0000000000000
--- a/pkgs/development/web/nodejs/v21.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{ callPackage, openssl, python3, enableNpm ? true }:
-
-let
-  buildNodejs = callPackage ./nodejs.nix {
-    inherit openssl;
-    python = python3;
-  };
-in
-buildNodejs {
-  inherit enableNpm;
-  version = "21.7.3";
-  sha256 = "08csswa1h55l9zvfjc4g1ksicgl42pbz7g1bc9hgy77w3gxjd2v6";
-  patches = [
-    ./disable-darwin-v8-system-instrumentation-node19.patch
-    ./bypass-darwin-xcrun-node16.patch
-    ./node-npm-build-npm-package-logic.patch
-  ];
-}