guix-patches
[Top][All Lists]
Advanced

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

[bug#63894] [PATCH 51/55] gnu: Add perl-net-imap-simple.


From: Antero Mejr
Subject: [bug#63894] [PATCH 51/55] gnu: Add perl-net-imap-simple.
Date: Sun, 4 Jun 2023 17:42:45 +0000

* gnu/packages/perl-web.scm (perl-net-imap-simple): New variable.
---
 gnu/packages/perl-web.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/perl-web.scm b/gnu/packages/perl-web.scm
index 86728d514f..126dac4f6c 100644
--- a/gnu/packages/perl-web.scm
+++ b/gnu/packages/perl-web.scm
@@ -316,3 +316,25 @@ (define-public perl-net-ip
 also a procedural way of accessing most of the functions. Most subroutines can
 take either IPv4 or IPv6 addresses transparently.")
     (license license:perl-license)))
+
+(define-public perl-net-imap-simple
+  (package
+    (name "perl-net-imap-simple")
+    (version "1.2212")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://cpan/authors/id/J/JE/JETTERO/Net-IMAP-Simple-"
+                    version ".tar.gz"))
+              (sha256
+               (base32
+                "0mbzbfn0v1x1brd8nsyw8bzdkz31lw9qp7h6nrl3fcxylc5cs4lq"))))
+    (build-system perl-build-system)
+    (propagated-inputs (list perl-parse-recdescent))
+    (home-page "https://metacpan.org/release/Net-IMAP-Simple";)
+    (synopsis "Perl extension for simple IMAP account handling.")
+    (description
+     "This package provides a class method constructs a new
+@code{Net::IMAP::Simple} object.  It takes one required parameter which is the
+server to connect to, and additional optional parameters.")
+    (license license:perl-license)))
-- 
2.39.2






reply via email to

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