From 52dda12c47ca76c0281c77a9315a9e54861a482e Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Tue, 28 Jul 2026 16:00:51 -0700 Subject: [PATCH] Fix deprecated Nix system access --- flake.nix | 2 +- frontend/src/lib/changelog.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 0bc448a..6cc8689 100644 --- a/flake.nix +++ b/flake.nix @@ -94,7 +94,7 @@ enable = lib.mkEnableOption "Rats with Gats remote play service"; package = lib.mkOption { type = lib.types.package; - default = self.packages.${pkgs.system}.default; + default = self.packages.${pkgs.stdenv.hostPlatform.system}.default; description = "The pirats package to use."; }; host = lib.mkOption { diff --git a/frontend/src/lib/changelog.js b/frontend/src/lib/changelog.js index bce50d4..a9c66b7 100644 --- a/frontend/src/lib/changelog.js +++ b/frontend/src/lib/changelog.js @@ -6,7 +6,7 @@ // - Add a CHANGELOG entry only when a commit changes something players can // see. Skip refactors, tests, and tooling. Keep wording player-facing. -export const VERSION = 25; +export const VERSION = 26; // Newest first. Each entry: { version, date: 'YYYY-MM-DD', changes: [string, ...] }. export const CHANGELOG = [