forked from mirrors/nixpkgs
29 lines
721 B
Nix
29 lines
721 B
Nix
{ lib, stdenv
|
|
, fetchgit
|
|
, rustPlatform
|
|
, CoreFoundation
|
|
, libiconv
|
|
, Security
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "genpass";
|
|
version = "0.4.12";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.sr.ht/~cyplo/genpass";
|
|
rev = "v${version}";
|
|
sha256 = "154kprbqc59f06ciz60il4ax299zapwa0hz8vjn25rl4gr5gzn4l";
|
|
};
|
|
|
|
cargoSha256 = "1nc699n7f732lhzfhsfknay6z3igyiqy5jymm5x815mv9y1vwaj1";
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ CoreFoundation libiconv Security ];
|
|
|
|
meta = with lib; {
|
|
description = "A simple yet robust commandline random password generator";
|
|
homepage = "https://sr.ht/~cyplo/genpass/";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ cyplo ];
|
|
};
|
|
}
|