biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / rucredstash / default.nix
blob43166eb0bf8ec7264ee399457d235b6bf7d89428
1 { lib, rustPlatform, fetchFromGitHub, stdenv, Security }:
3 rustPlatform.buildRustPackage rec {
4   pname = "rucredstash";
5   version = "0.9.2";
7   src = fetchFromGitHub {
8     owner = "psibi";
9     repo = "rucredstash";
10     rev = "v${version}";
11     hash = "sha256-trupBiinULzD8TAy3eh1MYXhQilO08xu2a4yN7wwhwk=";
12   };
14   cargoHash = "sha256-TYobVjjzrK3gprZcYyY98EvdASkq4urB+WiLlbJbwmk=";
16   buildInputs = lib.optional stdenv.hostPlatform.isDarwin Security;
18   # Disable tests since it requires network access and relies on the
19   # presence of certain AWS infrastructure
20   doCheck = false;
22   meta = with lib; {
23     description = "Utility for managing credentials securely in AWS cloud";
24     homepage = "https://github.com/psibi/rucredstash";
25     license = licenses.mit;
26     maintainers = with maintainers; [ psibi ];
27     mainProgram = "rucredstash";
28   };