[cpan2nix] perlPackages.MailDKIM: 0.54 -> 0.55

dependencies:
perlPackages.MailAuthenticationResults: init at 1.20180923
This commit is contained in:
volth 2019-04-22 01:12:04 +00:00
parent 9f0f510d85
commit b89fd35fb9

View file

@ -9075,6 +9075,19 @@ let
buildInputs = [ pkgs.darwin.apple_sdk.frameworks.ApplicationServices ];
};
MailAuthenticationResults = buildPerlPackage {
name = "Mail-AuthenticationResults-1.20180923";
src = fetchurl {
url = mirror://cpan/authors/id/M/MB/MBRADSHAW/Mail-AuthenticationResults-1.20180923.tar.gz;
sha256 = "1g1wym9vcbhldwvi4w5pl0fhd4jh2icj975awf4wr5xmkli9mxbz";
};
buildInputs = [ TestException ];
meta = {
description = "Object Oriented Authentication-Results Headers";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
MailMaildir = buildPerlPackage rec {
version = "1.0.0";
name = "Mail-Maildir-${version}";
@ -9127,12 +9140,12 @@ let
};
MailDKIM = buildPerlPackage rec {
name = "Mail-DKIM-0.54";
name = "Mail-DKIM-0.55";
src = fetchurl {
url = mirror://cpan/authors/id/M/MB/MBRADSHAW/Mail-DKIM-0.54.tar.gz;
sha256 = "1jix3jrqx9q2n684ar4igh5zma15j9gv91h9m2rbv8bs1z47hbxp";
url = mirror://cpan/authors/id/M/MB/MBRADSHAW/Mail-DKIM-0.55.tar.gz;
sha256 = "18nsh1ff6fkns4xk3y2ixmzmadgggydj11qkzj6nlnq2hzqxsafz";
};
propagatedBuildInputs = [ CryptOpenSSLRSA MailTools NetDNSResolverMock YAMLLibYAML ];
propagatedBuildInputs = [ CryptOpenSSLRSA MailAuthenticationResults MailTools NetDNSResolverMock YAMLLibYAML ];
doCheck = false; # tries to access the domain name system
buildInputs = [ TestRequiresInternet ];
};