From a840e81d7ac7f5a4a732c033fe3c9c686e416ece Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Tue, 7 Jun 2016 21:17:48 +0200 Subject: [PATCH] perlPackages: add a few meta sections --- pkgs/top-level/perl-packages.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index a43d4b46dd3..40edc40e2fc 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -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; }; };