2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv
|
2020-11-03 02:18:15 +00:00
|
|
|
, fetchgit
|
2020-05-15 21:57:56 +00:00
|
|
|
, rustPlatform
|
2020-08-20 17:08:02 +00:00
|
|
|
, CoreFoundation
|
|
|
|
, libiconv
|
|
|
|
, Security
|
2020-05-15 21:57:56 +00:00
|
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "genpass";
|
2021-03-23 19:22:30 +00:00
|
|
|
version = "0.4.12";
|
2020-05-15 21:57:56 +00:00
|
|
|
|
2020-11-03 02:18:15 +00:00
|
|
|
src = fetchgit {
|
|
|
|
url = "https://git.sr.ht/~cyplo/genpass";
|
2020-05-15 21:57:56 +00:00
|
|
|
rev = "v${version}";
|
2021-03-23 19:22:30 +00:00
|
|
|
sha256 = "154kprbqc59f06ciz60il4ax299zapwa0hz8vjn25rl4gr5gzn4l";
|
2020-05-15 21:57:56 +00:00
|
|
|
};
|
|
|
|
|
2021-05-28 09:39:13 +00:00
|
|
|
cargoSha256 = "1b9jqkg11d0ih46km063inqqjwfy1nrwb2xb3dagg3hi8hahpqpb";
|
2020-05-15 21:57:56 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ CoreFoundation libiconv Security ];
|
2020-08-20 17:08:02 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-10-19 00:13:06 +00:00
|
|
|
description = "A simple yet robust commandline random password generator";
|
2020-11-03 02:18:15 +00:00
|
|
|
homepage = "https://sr.ht/~cyplo/genpass/";
|
2021-03-23 19:22:30 +00:00
|
|
|
license = licenses.agpl3Only;
|
2020-05-15 21:57:56 +00:00
|
|
|
maintainers = with maintainers; [ cyplo ];
|
|
|
|
};
|
|
|
|
}
|