nodejs{,-slim}: 22 LTS → 24 LTS (#462407)

This commit is contained in:
Fabián Heredia Montiel
2025-12-15 14:59:40 +00:00
committed by GitHub
2 changed files with 5 additions and 2 deletions
+3
View File
@@ -6,6 +6,9 @@
- GCC has been updated from GCC 14 to GCC 15.
This introduces some backwards incompatible changes; Refer to the [upstream porting guide](https://gcc.gnu.org/gcc-15/porting_to.html) for details.
- Node.js default version has been updated from 22 LTS to 24 LTS.
This introduces some breaking changes; Refer to the [upstream migration article](https://nodejs.org/en/blog/migrations/v22-to-v24) for details.
## Backward Incompatibilities {#sec-nixpkgs-release-26.05-incompatibilities}
<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
+2 -2
View File
@@ -3106,8 +3106,8 @@ with pkgs;
nixnote2 = libsForQt5.callPackage ../applications/misc/nixnote2 { };
nodejs = nodejs_22;
nodejs-slim = nodejs-slim_22;
nodejs = nodejs_24;
nodejs-slim = nodejs-slim_24;
nodejs_20 = callPackage ../development/web/nodejs/v20.nix { };
nodejs-slim_20 = callPackage ../development/web/nodejs/v20.nix { enableNpm = false; };