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.
This commit is contained in:
Vera Aguilera Puerto 2023-06-28 22:30:41 +02:00 committed by Artturin
parent e5f1b02bd5
commit 2efca809cd

View file

@ -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
'';