Skip to content

Commit

Permalink
steamctl: init at 0.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jackwilsdon committed Oct 7, 2024
1 parent 779b7b7 commit 9cac16e
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions pkgs/by-name/st/steamctl/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
fetchFromGitHub,
lib,
python3,
}:
python3.pkgs.buildPythonApplication rec {
pname = "steamctl";
version = "0.9.5";

src = fetchFromGitHub {
owner = "ValvePython";
repo = "steamctl";
rev = "refs/tags/v${version}";
hash = "sha256-reNch5MP31MxyaeKUlANfizOXZXjtIDeSM1kptsWqkc=";
};

build-system = [ python3.pkgs.setuptools ];

dependencies = with python3.pkgs; [
appdirs
argcomplete
arrow
beautifulsoup4
pyqrcode
steam
tqdm
vpk
];

meta = {
description = "Take control of Steam from your terminal";
longDescription = ''
steamctl is an open-source CLI utility similar to steamcmd.
It provides access to a number of Steam features and data from the command line.
While it is possible to download apps and content from Steam, steamctl is not a game launcher.
'';
homepage = "https://github.com/ValvePython/steamctl";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jackwilsdon ];
mainProgram = "steamctl";
};
}

0 comments on commit 9cac16e

Please sign in to comment.