Commit d06515a0 authored by Dan Nixon's avatar Dan Nixon Committed by Anderson Torres
Browse files

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
parent ef8a0a04
Loading
Loading
Loading
Loading
+20 −0
Original line number Diff line number Diff line
@@ -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";