biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / sss-cli / default.nix
blob80daa4a6627ea02f957419e59cb0c67ad2ffceb8
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "sss-cli";
8   version = "0.1.1";
10   src = fetchFromGitHub {
11     owner = "dsprenkels";
12     repo = "sss-cli";
13     rev = "v${version}";
14     hash = "sha256-9Wht+t48SsWpj1z2yY6P7G+h9StmuqfMdODtyPffhak=";
15   };
17   cargoPatches = [ ./fix-cargo-lock.patch ];
19   cargoHash = "sha256-nKb0J9ym3ZYC80KemwQwT5vVtQUngYD4/091hAIYAiU=";
21   meta = with lib; {
22     homepage = "https://github.com/dsprenkels/sss-cli";
23     description = "Command line program for secret-sharing strings";
24     license = licenses.mit;
25     maintainers = with maintainers; [ laalsaas ];
26   };