4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
43 lines
1.5 KiB
Nix
43 lines
1.5 KiB
Nix
{ lib, stdenv, fetchurl, unzip, makeWrapper, dotnetCorePackages, jq }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ArchiSteamFarm";
|
|
version = "4.3.1.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/JustArchiNET/ArchiSteamFarm/releases/download/${version}/ASF-generic.zip";
|
|
sha256 = "1q28byshh4wkfsfdb0sfdqq9a5da9k7i4nagsfpk0fzyajvzd4lx";
|
|
};
|
|
|
|
nativeBuildInputs = [ unzip makeWrapper jq ];
|
|
|
|
sourceRoot = ".";
|
|
|
|
installPhase = ''
|
|
dist=$out/opt/asf
|
|
mkdir -p $dist
|
|
cp -r * $dist
|
|
|
|
jq "del(.runtimeOptions.framework.version)" ArchiSteamFarm.runtimeconfig.json > $dist/ArchiSteamFarm.runtimeconfig.json
|
|
|
|
makeWrapper ${dotnetCorePackages.aspnetcore_3_1}/bin/dotnet $out/bin/ArchiSteamFarm \
|
|
--add-flags $dist/ArchiSteamFarm.dll \
|
|
--add-flags "--path ~/.config/asf" \
|
|
--run "mkdir -p ~/.config/asf" \
|
|
--run "cd ~/.config/asf" \
|
|
--run "[ -d config ] || cp --no-preserve=mode -r $dist/config ." \
|
|
--run "[ -d logs ] || cp --no-preserve=mode -r $dist/logs ." \
|
|
--run "[ -d plugins ] || cp --no-preserve=mode -r $dist/plugins ." \
|
|
--run "ln -sf $dist/www ."
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Application with primary purpose of idling Steam cards from multiple accounts simultaneously";
|
|
homepage = "https://github.com/JustArchiNET/ArchiSteamFarm";
|
|
license = licenses.asl20;
|
|
platforms = dotnetCorePackages.aspnetcore_3_1.meta.platforms;
|
|
maintainers = with maintainers; [ gnidorah ];
|
|
hydraPlatforms = [];
|
|
};
|
|
}
|