This is an automated email from the git hooks/post-receive script.
pgarlick pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 25022bf gnu: Add perl-mail-sendmail.
25022bf is described below
commit 25022bfd3a683527e7dd1644c6edc44eef03da0e
Author: Paul Garlick <[email protected]>
AuthorDate: Tue Mar 24 18:31:27 2020 +0000
gnu: Add perl-mail-sendmail.
* gnu/packages/perl.scm (perl-mail-sendmail): New variable.
---
gnu/packages/perl.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 0d4dcd6..77fbc92 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -24,6 +24,7 @@
;;; Copyright © 2019 Alex Griffin <[email protected]>
;;; Copyright © 2019 Stephen J. Scheck <[email protected]>
;;; Copyright © 2020 Vincent Legoll <[email protected]>
+;;; Copyright © 2020 Paul Garlick <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -5281,6 +5282,28 @@ Build a Mail::Internet object, and then send it out
using Mail::Mailer.
\"Smart functions\" you should not depend on.
@end table")
(license perl-license)))
+(define-public perl-mail-sendmail
+ (package
+ (name "perl-mail-sendmail")
+ (version "0.80")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://cpan/authors/id/N/NE/NEILB/Mail-Sendmail-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "1r38qbkj7jwj8cqy1rnqzkk81psxi08b1aiq392817f3bk5ri2jv"))))
+ (build-system perl-build-system)
+ (arguments `(#:tests? #f)) ;socket not available during build
+ (home-page "https://metacpan.org/release/Mail-Sendmail")
+ (synopsis "Simple platform independent mailer")
+ (description "Mail::Sendmail is a pure perl module that provides a
+simple means to send email from a perl script. The module only
+requires Perl5 and a network connection.")
+ (license perl-license)))
(define-public perl-math-bezier
(package