From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH] gnu: Add perl-mhonarc. Date: Wed, 7 Sep 2016 18:24:39 +0000 Message-ID: <20160907182439.13598-1-ng0@we.make.ritual.n0.is> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60990) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bhhX9-00069q-JT for guix-devel@gnu.org; Wed, 07 Sep 2016 14:25:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bhhX4-0007eI-Hx for guix-devel@gnu.org; Wed, 07 Sep 2016 14:25:15 -0400 Received: from aibo.runbox.com ([91.220.196.211]:47788) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bhhX4-0007ar-An for guix-devel@gnu.org; Wed, 07 Sep 2016 14:25:10 -0400 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org Cc: ng0 * gnu/packages/mail.scm (perl-mhonarc): New variable. --- gnu/packages/mail.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index c2fc1a9..9740339 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -1388,3 +1388,26 @@ 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 perl-mhonarc + (package + (name "perl-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))) -- 2.10.0