nixpkgs/pkgs/tools/security/genpass/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
704 B
Nix
Raw Normal View History

{ lib, stdenv
, fetchgit
2020-05-01 21:21:28 +00:00
, rustPlatform
2020-08-16 13:22:56 +00:00
, CoreFoundation
, libiconv
, Security
2020-05-01 21:21:28 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "genpass";
2021-10-24 09:25:42 +00:00
version = "0.5.1";
2020-05-01 21:21:28 +00:00
src = fetchgit {
url = "https://git.sr.ht/~cyplo/genpass";
2020-05-01 21:21:28 +00:00
rev = "v${version}";
2021-10-24 09:25:42 +00:00
sha256 = "UyEgOlKtDyneRteN3jHA2BJlu5U1HFL8HA2MTQz5rns=";
2020-05-01 21:21:28 +00:00
};
2021-10-24 09:25:42 +00:00
cargoSha256 = "ls3tzZ+gtZQlObmbtwJDq6N/f5nY+Ps7RL5R/fR5Vgg=";
2020-05-01 21:21:28 +00:00
2021-01-15 09:19:50 +00:00
buildInputs = lib.optionals stdenv.isDarwin [ CoreFoundation libiconv Security ];
2020-08-16 13:22:56 +00:00
meta = with lib; {
description = "A simple yet robust commandline random password generator";
homepage = "https://sr.ht/~cyplo/genpass/";
2021-03-20 10:06:31 +00:00
license = licenses.agpl3Only;
2020-05-01 21:21:28 +00:00
maintainers = with maintainers; [ cyplo ];
};
}