genpass: init at 0.4.1

This commit is contained in:
Cyryl Płotnicki 2020-05-01 22:21:28 +01:00 committed by Bjørn Forsman
parent 3458035bdf
commit 69c6d18ae4
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ stdenv
, fetchFromGitHub
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "genpass";
version = "0.4.1";
src = fetchFromGitHub {
owner = "cyplo";
repo = pname;
rev = "v${version}";
sha256 = "1b22m7g55k5ry0vwyd8pakh8rmfkhk37qy5r74cn3n5pv3fcwini";
};
cargoSha256 = "1p6l64s9smhwka8bh3pamqimamxziad859i62nrmxzqc49nq5s7m";
meta = with stdenv.lib; {
description = "A simple yet robust commandline random password generator.";
homepage = "https://github.com/cyplo/genpass";
license = licenses.agpl3;
platforms = platforms.all;
maintainers = with maintainers; [ cyplo ];
};
}

View file

@ -930,6 +930,8 @@ in
fxlinuxprintutil = callPackage ../tools/misc/fxlinuxprintutil { };
genpass = callPackage ../tools/security/genpass { };
genymotion = callPackage ../development/mobile/genymotion { };
gaia = callPackage ../development/libraries/gaia { };