2022-06-16 17:23:12 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
2021-10-28 06:52:43 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, buildDotnetModule
|
2021-06-06 07:54:09 +00:00
|
|
|
}:
|
|
|
|
|
2021-10-28 06:52:43 +00:00
|
|
|
buildDotnetModule rec {
|
2021-06-06 07:54:09 +00:00
|
|
|
pname = "depotdownloader";
|
2021-10-11 16:52:03 +00:00
|
|
|
version = "2.4.5";
|
2021-06-06 07:54:09 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "SteamRE";
|
|
|
|
repo = "DepotDownloader";
|
|
|
|
rev = "DepotDownloader_${version}";
|
2021-10-11 16:52:03 +00:00
|
|
|
sha256 = "0i5qgjnliji1g408ks1034r69vqdmfnzanb0qm7jmyzwww7vwpnh";
|
2021-06-06 07:54:09 +00:00
|
|
|
};
|
|
|
|
|
2021-10-28 06:52:43 +00:00
|
|
|
projectFile = "DepotDownloader.sln";
|
|
|
|
nugetDeps = ./deps.nix;
|
2021-06-06 07:54:09 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2022-06-16 17:23:12 +00:00
|
|
|
broken = stdenv.isDarwin;
|
2021-10-28 06:52:43 +00:00
|
|
|
description = "Steam depot downloader utilizing the SteamKit2 library";
|
2021-06-06 07:54:09 +00:00
|
|
|
license = licenses.gpl2Only;
|
|
|
|
maintainers = [ maintainers.babbaj ];
|
|
|
|
platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" ];
|
|
|
|
};
|
|
|
|
}
|