From 9e480764f4de4a5e2f4521e70094d66fbc6bde03 Mon Sep 17 00:00:00 2001 From: Coca Date: Sun, 5 Jul 2026 12:26:31 +0100 Subject: [PATCH 1/2] space-station-14-launcher: add nix-update-script `nix-update-script` is needed for releases which change `nugetDeps` to get automatically updated. (cherry picked from commit d55366fd3768b601dc1b91537019b0e41dc9c3b0) --- pkgs/by-name/sp/space-station-14-launcher/package.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/by-name/sp/space-station-14-launcher/package.nix b/pkgs/by-name/sp/space-station-14-launcher/package.nix index 09262aa781c7..437fbdf2b704 100644 --- a/pkgs/by-name/sp/space-station-14-launcher/package.nix +++ b/pkgs/by-name/sp/space-station-14-launcher/package.nix @@ -2,6 +2,7 @@ lib, stdenv, config, + nix-update-script, buildDotnetModule, dotnetCorePackages, fetchFromGitHub, @@ -133,6 +134,8 @@ buildDotnetModule rec { icoFileToHiColorTheme SS14.Launcher/Assets/icon.ico ${pname} $out ''; + passthru.updateScript = nix-update-script { }; + meta = { description = "Launcher for Space Station 14, a multiplayer game about paranoia and disaster"; homepage = "https://spacestation14.io"; From ef84b10306ce613e63ee42fd3c2a171f0a72d97b Mon Sep 17 00:00:00 2001 From: Coca Date: Sun, 5 Jul 2026 12:28:45 +0100 Subject: [PATCH 2/2] space-station-14-launcher: 0.39.0 -> 0.39.1 Changelog (practically just one change): https://github.com/space-wizards/SS14.Launcher/compare/v0.39.0...v0.39.1 (cherry picked from commit 6f8d1c82b9515cfd8b14485eb68506918c118506) --- pkgs/by-name/sp/space-station-14-launcher/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/sp/space-station-14-launcher/package.nix b/pkgs/by-name/sp/space-station-14-launcher/package.nix index 437fbdf2b704..93efed21473b 100644 --- a/pkgs/by-name/sp/space-station-14-launcher/package.nix +++ b/pkgs/by-name/sp/space-station-14-launcher/package.nix @@ -40,7 +40,7 @@ }: let pname = "space-station-14-launcher"; - version = "0.39.0"; + version = "0.39.1"; in buildDotnetModule rec { inherit pname; @@ -53,7 +53,7 @@ buildDotnetModule rec { owner = "space-wizards"; repo = "SS14.Launcher"; tag = "v${version}"; - hash = "sha256-i5jcaB1wa+Toj6orpEQ9sK3EX1CLWadnhTEQDOU7QU4="; + hash = "sha256-u3tsPWAFMckWSHhiPqL50i9BMxR+VrLnpUSWGRRu9AA="; fetchSubmodules = true; };