forked from mirrors/nixpkgs
perlPackages: add a few meta sections
This commit is contained in:
parent
57cd08ae7e
commit
a840e81d7a
|
@ -415,6 +415,10 @@ let self = _self // overrides; _self = with self; {
|
|||
};
|
||||
buildInputs = [ ModuleBuild ];
|
||||
propagatedBuildInputs = [ ScalarString DataInteger DigestCRC ];
|
||||
meta = {
|
||||
description = "DEC VMS password hashing";
|
||||
license = stdenv.lib.licenses.gpl1Plus;
|
||||
};
|
||||
};
|
||||
|
||||
AuthenHtpasswd = buildPerlPackage rec {
|
||||
|
@ -424,6 +428,10 @@ let self = _self // overrides; _self = with self; {
|
|||
sha256 = "0rw06hwpxg388d26l0jvirczx304f768ijvc20l4b2ll7xzg9ymm";
|
||||
};
|
||||
propagatedBuildInputs = [ ClassAccessor CryptPasswdMD5 DigestSHA1 IOLockedFile ];
|
||||
meta = {
|
||||
description = "Interface to read and modify Apache .htpasswd files";
|
||||
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
|
||||
};
|
||||
};
|
||||
|
||||
AuthenPassphrase = buildPerlPackage rec {
|
||||
|
@ -435,6 +443,10 @@ let self = _self // overrides; _self = with self; {
|
|||
buildInputs = [ ModuleBuild ];
|
||||
propagatedBuildInputs = [ModuleRuntime ParamsClassify CryptPasswdMD5 CryptDES
|
||||
DataEntropy CryptUnixCryptXS CryptEksblowfish CryptMySQL DigestMD4 AuthenDecHpwd];
|
||||
meta = {
|
||||
description = "Hashed passwords/passphrases as objects";
|
||||
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
|
||||
};
|
||||
};
|
||||
|
||||
AuthenSASL = buildPerlPackage rec {
|
||||
|
@ -444,6 +456,10 @@ let self = _self // overrides; _self = with self; {
|
|||
sha256 = "02afhlrdq5hh5g8b32fa79fqq5i76qzwfqqvfi9zi57h31szl536";
|
||||
};
|
||||
propagatedBuildInputs = [ DigestHMAC ];
|
||||
meta = {
|
||||
description = "SASL Authentication framework";
|
||||
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
|
||||
};
|
||||
};
|
||||
|
||||
autobox = pkgs.perlPackages.Autobox;
|
||||
|
@ -3827,6 +3843,9 @@ let self = _self // overrides; _self = with self; {
|
|||
src = fetchurl {
|
||||
url = "mirror://cpan/authors/id/O/OL/OLIMAUL/${name}.tar.gz";
|
||||
sha256 = "5c5329f37c46eb79835169508583da8767d9839350b69bb2b48ac6f594f70374";
|
||||
meta = {
|
||||
description = "Module that calculates CRC sums of all sorts";
|
||||
license = stdenv.lib.licenses.publicDomain;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue