genpass: init at 0.4.1
This commit is contained in:
parent
3458035bdf
commit
69c6d18ae4
25
pkgs/tools/security/genpass/default.nix
Normal file
25
pkgs/tools/security/genpass/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -930,6 +930,8 @@ in
|
|||||||
|
|
||||||
fxlinuxprintutil = callPackage ../tools/misc/fxlinuxprintutil { };
|
fxlinuxprintutil = callPackage ../tools/misc/fxlinuxprintutil { };
|
||||||
|
|
||||||
|
genpass = callPackage ../tools/security/genpass { };
|
||||||
|
|
||||||
genymotion = callPackage ../development/mobile/genymotion { };
|
genymotion = callPackage ../development/mobile/genymotion { };
|
||||||
|
|
||||||
gaia = callPackage ../development/libraries/gaia { };
|
gaia = callPackage ../development/libraries/gaia { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user