ArchiSteamFarm: 5.4.7.2 -> 5.4.7.3

This commit is contained in:
Sandro Jäckel 2023-06-26 20:45:43 +02:00
parent ea12f27715
commit 0000000d73
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

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
}