biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / genpass / default.nix
blobf1e9a197680bf10d9f5ad10121fe24d01ef4ca4e
1 { lib, stdenv
2 , fetchgit
3 , rustPlatform
4 , CoreFoundation
5 , libiconv
6 , Security
7 }:
8 rustPlatform.buildRustPackage rec {
9   pname = "genpass";
10   version = "0.5.1";
12   src = fetchgit {
13     url = "https://git.sr.ht/~cyplo/genpass";
14     rev = "v${version}";
15     sha256 = "UyEgOlKtDyneRteN3jHA2BJlu5U1HFL8HA2MTQz5rns=";
16   };
18   cargoHash = "sha256-ls3tzZ+gtZQlObmbtwJDq6N/f5nY+Ps7RL5R/fR5Vgg=";
20   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ CoreFoundation libiconv Security ];
22   meta = with lib; {
23     description = "Simple yet robust commandline random password generator";
24     mainProgram = "genpass";
25     homepage = "https://sr.ht/~cyplo/genpass/";
26     license = licenses.agpl3Only;
27     maintainers = with maintainers; [ cyplo ];
28   };