perlPackages.CryptHSXKPasswd: init at 3.6

Note that because of an upstream issue two module tests fail and
dictionary file functionality does not work in either the library or
`hsxkpasswd` binary.

See:
  - https://github.com/bbusschots/hsxkpasswd/issues/42
  - https://github.com/bbusschots/hsxkpasswd/issues/43
This commit is contained in:
Dan Nixon 2023-06-13 00:15:37 +01:00 committed by Anderson Torres
parent ef8a0a04d9
commit d06515a020

View File

@ -4947,6 +4947,26 @@ with self; {
};
};
CryptHSXKPasswd = buildPerlPackage {
pname = "Crypt-HSXKPasswd";
version = "3.6";
src = fetchurl {
url = "mirror://cpan/authors/id/B/BA/BARTB/Crypt-HSXKPasswd-v3.6.tar.gz";
hash = "sha256-lZ3MX58BG/ALha0i31ZrerK/XqHTYrDeD7WuKfvEWLM=";
};
buildInputs = [ Clone DateTime FileHomeDir FileShare FileShareDir GetoptLong JSON ListMoreUtils MathRound Readonly TextUnidecode TypeTiny ];
meta = {
description = "A secure memorable password generator";
homepage = "http://www.bartb.ie/hsxkpasswd";
license = with lib.licenses; [ bsd2 ];
maintainers = [ maintainers.dannixon ];
mainProgram = "hsxkpasswd";
};
# Two tests fail as a result of https://github.com/bbusschots/hsxkpasswd/issues/42
# (also see https://github.com/bbusschots/hsxkpasswd/issues/43)
doCheck = false;
};
CryptIDEA = buildPerlPackage {
pname = "Crypt-IDEA";
version = "1.10";