Skip to content

Commit 5b03f54

Browse files
authored
fix(nix): Update nixpkgs and bump nodejs from 18 to 20 (#384)
* fix(nix): Update nixpkgs and bump nodejs from 18 to 20 * chore: Update changelog * chore: Update changelog
1 parent 5c9767e commit 5b03f54

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
inherit nixpkgs pkgs; release = false;
1111
defaultCrateOverrides = pkgs.defaultCrateOverrides // {
1212
stackable-cockpit-web = attrs: {
13-
nativeBuildInputs = [ pkgs.nodePackages.yarn pkgs.nodejs ];
13+
nativeBuildInputs = [ pkgs.nodePackages.yarn pkgs.nodejs_20 ];
1414
preConfigure =
1515
''
1616
[[ ! -e node_modules ]] || rm -r node_modules
@@ -69,7 +69,7 @@
6969
done
7070
'';
7171
}
72-
, js2nix ? pkgs.callPackage sources.js2nix { nodejs = pkgs.nodejs-18_x; }
72+
, js2nix ? pkgs.callPackage sources.js2nix { nodejs = pkgs.nodejs_20; }
7373
, gomod2nix ? pkgs.callPackage sources.gomod2nix {}
7474
}:
7575
rec {

nix/sources.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/stackablectl/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
### Fixed
8+
9+
- nix: Update nixpkgs and upgrade nodejs-18 to nodejs_20 ([#384]).
10+
11+
[#384]: https://github.com/stackabletech/stackable-cockpit/pull/384
12+
713
## [1.0.0] - 2025-06-02
814

915
### Added

0 commit comments

Comments
 (0)