mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add perl-mail-dkim.
* gnu/packages/mail.scm (perl-mail-dkim): New variable.
This commit is contained in:
parent
ac629e625c
commit
930c52ae66
1 changed files with 32 additions and 0 deletions
|
@ -1924,6 +1924,38 @@ (define-public perl-mail-authenticationresults
|
|||
Authentication-Results header seen in the wild.")
|
||||
(license perl-license)))
|
||||
|
||||
(define-public perl-mail-dkim
|
||||
(package
|
||||
(name "perl-mail-dkim")
|
||||
(version "0.55")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"mirror://cpan/authors/id/M/MB/MBRADSHAW/Mail-DKIM-"
|
||||
version
|
||||
".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"18nsh1ff6fkns4xk3y2ixmzmadgggydj11qkzj6nlnq2hzqxsafz"))))
|
||||
(build-system perl-build-system)
|
||||
(propagated-inputs
|
||||
`(("perl-crypt-openssl-rsa" ,perl-crypt-openssl-rsa)
|
||||
("perl-mail-authenticationresults" ,perl-mail-authenticationresults)
|
||||
("perl-mailtools" ,perl-mailtools)
|
||||
("perl-net-dns" ,perl-net-dns)))
|
||||
(native-inputs
|
||||
`(("perl-net-dns-resolver-mock" ,perl-net-dns-resolver-mock)
|
||||
("perl-test-requiresinternet" ,perl-test-requiresinternet)
|
||||
("perl-yaml-libyaml" ,perl-yaml-libyaml)))
|
||||
(home-page "https://metacpan.org/release/Mail-DKIM")
|
||||
(synopsis "Signs/verifies Internet mail with DKIM/DomainKey signatures")
|
||||
(description "Mail::DKIM is a Perl module that implements the new Domain
|
||||
Keys Identified Mail (DKIM) standard, and the older Yahoo! DomainKeys standard,
|
||||
both of which sign and verify emails using digital signatures and DNS records.
|
||||
Mail-DKIM can be used by any Perl program that wants to provide support for
|
||||
DKIM and/or DomainKeys.")
|
||||
(license gpl3+)))
|
||||
|
||||
(define-public mb2md
|
||||
(package
|
||||
(name "mb2md")
|
||||
|
|
Loading…
Reference in a new issue