2021-12-06 16:07:01 +00:00
|
|
|
{ lib
|
2023-01-11 07:51:40 +00:00
|
|
|
, stdenv
|
2021-12-06 16:07:01 +00:00
|
|
|
, buildDotnetModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
, dotnetCorePackages
|
|
|
|
, libkrb5
|
|
|
|
, zlib
|
|
|
|
, openssl
|
2022-01-13 20:06:32 +00:00
|
|
|
, callPackage
|
|
|
|
, stdenvNoCC
|
2021-12-06 16:07:01 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildDotnetModule rec {
|
|
|
|
pname = "archisteamfarm";
|
2022-04-15 01:41:22 +00:00
|
|
|
# nixpkgs-update: no auto update
|
2023-05-24 13:37:59 +00:00
|
|
|
version = "5.4.5.2";
|
2021-12-06 16:07:01 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "justarchinet";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2023-05-24 13:37:59 +00:00
|
|
|
sha256 = "sha256-l3qcdgTTpbI4Jdy1jpzyCiAFglJfzBHkb6hLIZ4hDKQ=";
|
2020-06-18 07:06:33 +00:00
|
|
|
};
|
|
|
|
|
2023-01-11 07:51:40 +00:00
|
|
|
dotnet-runtime = dotnetCorePackages.aspnetcore_7_0;
|
|
|
|
dotnet-sdk = dotnetCorePackages.sdk_7_0;
|
2022-01-13 20:06:32 +00:00
|
|
|
|
2022-09-14 18:05:37 +00:00
|
|
|
nugetDeps = ./deps.nix;
|
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
projectFile = "ArchiSteamFarm.sln";
|
|
|
|
executables = [ "ArchiSteamFarm" ];
|
2023-01-11 07:51:40 +00:00
|
|
|
dotnetFlags = [
|
|
|
|
"-p:PublishSingleFile=true"
|
|
|
|
"-p:PublishTrimmed=true"
|
|
|
|
];
|
2023-03-24 00:07:29 +00:00
|
|
|
dotnetInstallFlags = [
|
|
|
|
"--framework=net7.0"
|
|
|
|
];
|
2023-01-11 07:51:40 +00:00
|
|
|
selfContainedBuild = true;
|
2020-05-29 06:06:01 +00:00
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
runtimeDeps = [ libkrb5 zlib openssl ];
|
2020-06-18 07:06:33 +00:00
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
2023-01-11 07:51:40 +00:00
|
|
|
preBuild = ''
|
|
|
|
export projectFile=(ArchiSteamFarm)
|
|
|
|
'';
|
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
preInstall = ''
|
|
|
|
# A mutable path, with this directory tree must be set. By default, this would point at the nix store causing errors.
|
|
|
|
makeWrapperArgs+=(
|
2022-01-13 20:06:32 +00:00
|
|
|
--run 'mkdir -p ~/.config/archisteamfarm/{config,logs,plugins}'
|
|
|
|
--set "ASF_PATH" "~/.config/archisteamfarm"
|
2021-12-06 16:07:01 +00:00
|
|
|
)
|
2020-05-29 06:06:01 +00:00
|
|
|
'';
|
|
|
|
|
2023-01-11 07:51:40 +00:00
|
|
|
postInstall = ''
|
|
|
|
buildPlugin() {
|
2023-03-24 00:07:29 +00:00
|
|
|
echo "Publishing plugin $1"
|
2023-01-11 07:51:40 +00:00
|
|
|
dotnet publish $1 -p:ContinuousIntegrationBuild=true -p:Deterministic=true \
|
|
|
|
--output $out/lib/${pname}/plugins/$1 --configuration Release \
|
2023-03-24 00:07:29 +00:00
|
|
|
-p:TargetLatestRuntimePatch=false -p:UseAppHost=false --no-restore \
|
|
|
|
--framework=net7.0
|
2023-01-11 07:51:40 +00:00
|
|
|
}
|
2023-02-02 18:25:31 +00:00
|
|
|
|
|
|
|
buildPlugin ArchiSteamFarm.OfficialPlugins.ItemsMatcher
|
2023-03-15 16:39:30 +00:00
|
|
|
buildPlugin ArchiSteamFarm.OfficialPlugins.MobileAuthenticator
|
2023-01-11 07:51:40 +00:00
|
|
|
buildPlugin ArchiSteamFarm.OfficialPlugins.SteamTokenDumper
|
|
|
|
'';
|
|
|
|
|
2022-01-13 20:06:32 +00:00
|
|
|
passthru = {
|
2023-01-11 07:51:40 +00:00
|
|
|
# nix-shell maintainers/scripts/update.nix --argstr package ArchiSteamFarm
|
2022-06-16 17:23:12 +00:00
|
|
|
updateScript = ./update.sh;
|
2022-01-13 20:06:32 +00:00
|
|
|
ui = callPackage ./web-ui { };
|
|
|
|
};
|
2021-12-06 16:07:01 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-05-29 06:06:01 +00:00
|
|
|
description = "Application with primary purpose of idling Steam cards from multiple accounts simultaneously";
|
|
|
|
homepage = "https://github.com/JustArchiNET/ArchiSteamFarm";
|
|
|
|
license = licenses.asl20;
|
2022-01-13 20:06:32 +00:00
|
|
|
platforms = [ "x86_64-linux" "aarch64-linux" ];
|
2021-12-06 16:07:01 +00:00
|
|
|
maintainers = with maintainers; [ SuperSandro2000 lom ];
|
2020-05-29 06:06:01 +00:00
|
|
|
};
|
|
|
|
}
|