diff options
Diffstat (limited to 'pkgs')
-rw-r--r-- | pkgs/applications/misc/ArchiSteamFarm/default.nix | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/applications/misc/ArchiSteamFarm/default.nix b/pkgs/applications/misc/ArchiSteamFarm/default.nix index c7cbf72bc776..0dbcf051c3c9 100644 --- a/pkgs/applications/misc/ArchiSteamFarm/default.nix +++ b/pkgs/applications/misc/ArchiSteamFarm/default.nix @@ -9,15 +9,15 @@ }: buildDotnetModule rec { - pname = "archisteamfarm"; + pname = "ArchiSteamFarm"; # nixpkgs-update: no auto update - version = "5.4.7.2"; + version = "5.4.7.3"; src = fetchFromGitHub { - owner = "justarchinet"; - repo = pname; + owner = "JustArchiNET"; + repo = "ArchiSteamFarm"; rev = version; - hash = "sha256-qKG4eFF/YTb7wlABBtEjOqBYvtVTLKCXqTD9idkhnI4="; + hash = "sha256-xxHNMqFHxFVbKpy9JHHif4GZ/jk9CUUwgyPWmlTXgcc="; }; dotnet-runtime = dotnetCorePackages.aspnetcore_7_0; @@ -56,7 +56,7 @@ buildDotnetModule rec { buildPlugin() { echo "Publishing plugin $1" dotnet publish $1 -p:ContinuousIntegrationBuild=true -p:Deterministic=true \ - --output $out/lib/${pname}/plugins/$1 --configuration Release \ + --output $out/lib/archisteamfarm/plugins/$1 --configuration Release \ -p:TargetLatestRuntimePatch=false -p:UseAppHost=false --no-restore \ --framework=net7.0 } |