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

29 lines
721 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-03-20 10:06:31 +00:00
version = "0.4.12";
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-03-20 10:06:31 +00:00
sha256 = "154kprbqc59f06ciz60il4ax299zapwa0hz8vjn25rl4gr5gzn4l";
2020-05-01 21:21:28 +00:00
};
cargoSha256 = "1b9jqkg11d0ih46km063inqqjwfy1nrwb2xb3dagg3hi8hahpqpb";
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 ];
};
}