guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] gnu: Add perl-mailtools.


From: Danny Milosavljevic
Subject: [PATCH] gnu: Add perl-mailtools.
Date: Wed, 27 Jul 2016 00:07:15 +0200

* gnu/packages/mail.scm (perl-mailtools): New variable.
---
 gnu/packages/mail.scm | 29 +++++++++++++++++++++++++++--
 1 file changed, 27 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 5a3ebf0..a6e2279 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -15,6 +15,7 @@
 ;;; Copyright © 2016 Lukas Gradl <address@hidden>
 ;;; Copyright © 2016 Alex Kost <address@hidden>
 ;;; Copyright © 2016 Troy Sankey <address@hidden>
+;;; Copyright © 2016 Danny Milosavljevic <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -70,11 +71,13 @@
   #:use-module (gnu packages gdb)
   #:use-module (gnu packages samba)
   #:use-module (gnu packages tls)
+  #:use-module (gnu packages networking)
+  #:use-module (gnu packages web) ; lots of perl packages misclassified there
   #:use-module (gnu packages xml)
   #:use-module (gnu packages xorg)
   #:use-module ((guix licenses)
-                #:select (gpl2 gpl2+ gpl3 gpl3+ lgpl2.1 lgpl2.1+ lgpl3+
-                           non-copyleft (expat . license:expat)))
+                #:select (gpl2 gpl2+ gpl3 gpl3+ lgpl2.1 lgpl2.1+ lgpl3+ asl2.0
+                           non-copyleft bsd-3 (expat . license:expat)))
   #:use-module (guix packages)
   #:use-module (guix download)
   #:use-module (guix git-download)
@@ -1260,3 +1263,25 @@ synchronizing with a remote address book, 
@command{vdirsyncer} is recommended.
 Khard can also be used from within the email client @command{mutt}.")
     (home-page "https://github.com/scheibler/khard";)
     (license gpl3+)))
+
+(define-public perl-mailtools
+ (package
+  (name "perl-mailtools")
+  (version "2.18")
+  (source
+    (origin
+      (method url-fetch)
+      (uri (string-append
+             "mirror://cpan/authors/id/M/MA/MARKOV/MailTools-"
+             version
+             ".tar.gz"))
+      (sha256
+        (base32
+          "09xm6ymyqwawb21v15wyy721ps2rfxiqx5qdy8912dsp09vrxvnz"))))
+  (build-system perl-build-system)
+  (inputs `(("perl-timedate" ,perl-timedate)))
+  (home-page
+    "http://search.cpan.org/dist/MailTools";)
+  (synopsis "Various e-mail related modules for Perl")
+  (description "MailTools contains E-Mail related modules for Perl.")
+  (license (package-license perl))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]