3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/depotdownloader/default.nix

27 lines
630 B
Nix
Raw Normal View History

2021-10-26 00:36:45 +01:00
{ lib
, fetchFromGitHub
, buildDotnetModule
2021-06-06 02:02:44 +01:00
}:
2021-10-26 00:36:45 +01:00
buildDotnetModule rec {
2021-06-06 02:02:44 +01:00
pname = "depotdownloader";
2021-10-09 20:42:21 +01:00
version = "2.4.5";
2021-06-06 02:02:44 +01:00
src = fetchFromGitHub {
owner = "SteamRE";
repo = "DepotDownloader";
rev = "DepotDownloader_${version}";
2021-10-09 20:42:21 +01:00
sha256 = "0i5qgjnliji1g408ks1034r69vqdmfnzanb0qm7jmyzwww7vwpnh";
2021-06-06 02:02:44 +01:00
};
2021-10-26 00:36:45 +01:00
projectFile = "DepotDownloader.sln";
nugetDeps = ./deps.nix;
2021-06-06 02:02:44 +01:00
meta = with lib; {
2021-10-26 00:36:45 +01:00
description = "Steam depot downloader utilizing the SteamKit2 library";
2021-06-06 02:02:44 +01:00
license = licenses.gpl2Only;
maintainers = [ maintainers.babbaj ];
platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" ];
};
}