Skip to content

Commit

Permalink
ArchiSteamFarm: 6.0.8.7 -> 6.1.0.3 (NixOS#361305)
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 authored Dec 10, 2024
2 parents 63a21b1 + 4b5e020 commit d6e1071
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 49 deletions.
2 changes: 1 addition & 1 deletion nixos/modules/services/games/archisteamfarm.nix
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ in
RestrictSUIDSGID = true;
SecureBits = "noroot-locked";
SystemCallArchitectures = "native";
SystemCallFilter = [ "@system-service" "~@privileged" ];
SystemCallFilter = [ "@system-service" "~@privileged" "mincore" ];
UMask = "0077";
}
];
Expand Down
10 changes: 5 additions & 5 deletions pkgs/applications/misc/ArchiSteamFarm/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@
buildDotnetModule rec {
pname = "ArchiSteamFarm";
# nixpkgs-update: no auto update
version = "6.0.8.7";
version = "6.1.0.3";

src = fetchFromGitHub {
owner = "JustArchiNET";
repo = "ArchiSteamFarm";
rev = version;
hash = "sha256-PnHMJtM4lWuRn+7J9NxObEOJi4pbYEChcpcAJ+EdtSI=";
hash = "sha256-3NOeKdXb1tz4qx+tCs6QKfze2KLfyodKwt/aNx6tLvI=";
};

dotnet-runtime = dotnetCorePackages.aspnetcore_8_0;
dotnet-sdk = dotnetCorePackages.sdk_8_0;
dotnet-runtime = dotnetCorePackages.aspnetcore_9_0;
dotnet-sdk = dotnetCorePackages.sdk_9_0;

nugetDeps = ./deps.nix;

Expand All @@ -38,7 +38,7 @@ buildDotnetModule rec {
]
;
dotnetBuildFlags = [
"--framework=net8.0"
"--framework=net9.0"
];
dotnetInstallFlags = dotnetBuildFlags;

Expand Down
Loading

0 comments on commit d6e1071

Please sign in to comment.