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

29 lines
721 B
Nix
Raw Normal View History

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