about summary refs log tree commit diff
path: root/pkgs/games/space-station-14-launcher
diff options
context:
space:
mode:
authorVera Aguilera Puerto <gradientvera@outlook.com>2023-06-28 22:30:41 +0200
committerArtturin <Artturin@artturin.com>2023-09-23 07:30:27 +0300
commit2efca809cd1c9d3d9d71a7351badefcfc9dd7e00 (patch)
tree082299bd285c2132eba292d8d154966f6c8445a9 /pkgs/games/space-station-14-launcher
parente5f1b02bd52e64494c61c0948fb61f70e8cfaa34 (diff)
space-station-14-launcher: 0.21.1 -> 0.22.1
Loader files were now being copied under loader/linux-x64 instead of just loader, so I had to modify the post install script slightly.
Diffstat (limited to 'pkgs/games/space-station-14-launcher')
-rw-r--r--pkgs/games/space-station-14-launcher/space-station-14-launcher.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/games/space-station-14-launcher/space-station-14-launcher.nix b/pkgs/games/space-station-14-launcher/space-station-14-launcher.nix
index 21d542f0d8cdd..9d598798defe0 100644
--- a/pkgs/games/space-station-14-launcher/space-station-14-launcher.nix
+++ b/pkgs/games/space-station-14-launcher/space-station-14-launcher.nix
@@ -31,7 +31,7 @@
 , gdk-pixbuf
 }:
 let
-  version = "0.21.1";
+  version = "0.22.1";
   pname = "space-station-14-launcher";
 in
 buildDotnetModule rec {
@@ -44,7 +44,7 @@ buildDotnetModule rec {
     owner = "space-wizards";
     repo = "SS14.Launcher";
     rev = "v${version}";
-    hash = "sha256-uJ/47cQZsGgrExemWCWeSM/U6eW2HoKWHCsVE2KypVQ=";
+    hash = "sha256-I+Kj8amgFxT6yEXI5s1y0n1rgfzIrLtMOkYjguu6wpo=";
     fetchSubmodules = true;
   };
 
@@ -121,7 +121,7 @@ buildDotnetModule rec {
 
   postInstall = ''
     mkdir -p $out/lib/space-station-14-launcher/loader
-    cp -r SS14.Loader/bin/${buildType}/*/* $out/lib/space-station-14-launcher/loader/
+    cp -r SS14.Loader/bin/${buildType}/*/*/* $out/lib/space-station-14-launcher/loader/
 
     icoFileToHiColorTheme SS14.Launcher/Assets/icon.ico space-station-14-launcher $out
   '';