python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / genpass / default.nix
blob9565bf80c9505b6ee29ade5616db605e3def479c
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   cargoSha256 = "ls3tzZ+gtZQlObmbtwJDq6N/f5nY+Ps7RL5R/fR5Vgg=";
20   buildInputs = lib.optionals stdenv.isDarwin [ CoreFoundation libiconv Security ];
22   meta = with lib; {
23     description = "A simple yet robust commandline random password generator";
24     homepage = "https://sr.ht/~cyplo/genpass/";
25     license = licenses.agpl3Only;
26     maintainers = with maintainers; [ cyplo ];
27   };