space-station-14-launcher: fix fhsenv version (#359409)

This commit is contained in:
Felix Bühler 2024-11-27 20:25:52 +01:00 committed by GitHub
commit 4329ff5f84
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 3 deletions

View File

@ -14,7 +14,8 @@ let
'';
in
buildFHSEnv rec {
name = "space-station-14-launcher-wrapped";
pname = "space-station-14-launcher-wrapped";
inherit (space-station-14-launcher) version;
targetPkgs = pkgs: [
space-station-14-launcher
@ -35,6 +36,6 @@ buildFHSEnv rec {
unwrapped = space-station-14-launcher;
};
meta = space-station-14-launcher.meta // {
mainProgram = name;
mainProgram = pname;
};
}

View File

@ -27,7 +27,7 @@ let
pname = "space-station-14-launcher";
in
buildDotnetModule rec {
inherit pname;
inherit pname version;
# Workaround to prevent buildDotnetModule from overriding assembly versions.
name = "${pname}-${version}";