mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 03:12:51 +00:00
Merge pull request #251050 from surfaceflinger/steamguard-cli
steamguard-cli: init at 0.12.0
This commit is contained in:
commit
e1674514de
28
pkgs/tools/security/steamguard-cli/default.nix
Normal file
28
pkgs/tools/security/steamguard-cli/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "steamguard-cli";
|
||||
version = "0.12.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "dyc3";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-WCEMZTi9/EI8JaUM5w2xJkx0x3DoaByORgVqw1TPcgI=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-FVjL0tFndJNsL5oZSSqBvMtCEPqzf5xZGd8NaV5nmr4=";
|
||||
|
||||
meta = with lib; {
|
||||
changelog = "https://github.com/dyc3/steamguard-cli/releases/tag/v${version}";
|
||||
description = "A linux utility for generating 2FA codes for Steam and managing Steam trade confirmations.";
|
||||
homepage = "https://github.com/dyc3/steamguard-cli";
|
||||
license = with licenses; [ gpl3Only ];
|
||||
mainProgram = "steamguard";
|
||||
maintainers = with maintainers; [ surfaceflinger ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -38570,6 +38570,8 @@ with pkgs;
|
||||
|
||||
steamback = python311.pkgs.callPackage ../tools/games/steamback { };
|
||||
|
||||
steamguard-cli = callPackage ../tools/security/steamguard-cli { };
|
||||
|
||||
protontricks = python3Packages.callPackage ../tools/package-management/protontricks {
|
||||
inherit winetricks steam-run yad;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user