Merge pull request #239985 from SuperSandro2000/ArchiSteamFarm

ArchiSteamFarm: 5.4.7.2 -> 5.4.7.3
This commit is contained in:
Sandro 2023-06-27 00:01:08 +02:00 committed by GitHub
commit 86f83ddad4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
}