diff options
author | ng0 <ng0@we.make.ritual.n0.is> | 2016-09-14 09:26:04 +0000 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-09-14 17:32:07 -0400 |
commit | 74c0282c4591720b9a81359e400bb460718b78c1 (patch) | |
tree | 8a1bb8803e9b72a38d5aa2b2d6f3c4a1cf819b24 /gnu/packages/mail.scm | |
parent | 991847748a554deb9bc6d6a7b4f8a5e9164365c6 (diff) | |
download | guix-74c0282c4591720b9a81359e400bb460718b78c1.tar guix-74c0282c4591720b9a81359e400bb460718b78c1.tar.gz |
gnu: Add mhonarc.
* gnu/packages/mail.scm (mhonarc): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name>
Diffstat (limited to 'gnu/packages/mail.scm')
-rw-r--r-- | gnu/packages/mail.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index c2fc1a9a0c..90c2da4f10 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -1388,3 +1388,25 @@ to mbox files, maildir folders or a Mail Delivery Agent (MDA), TLS/SSL, several authentication methods, Internationalized Domain Names (IDN) and SOCKS proxies.") (license gpl3+))) + +(define-public mhonarc + (package + (name "mhonarc") + (version "2.6.19") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/E/EH/EHOOD/MHonArc-" + version ".tar.gz")) + (sha256 + (base32 + "0ll3v93yji334zqp6xfzfxc0127pmjcznmai1l5q6dzawrs2igzq")))) + (build-system perl-build-system) + (home-page "https://www.mhonarc.org/") + (synopsis "Create HTML archives of mail/news messages") + (description + "MHonArc is a Perl mail-to-HTML converter. MHonArc +provides HTML mail archiving with index, mail thread linking, +etc; plus other capabilities including support for MIME and +powerful user customization features.") + (license gpl2+))) |