From 1b6f995092a144b20698b0b24911f06b352cab50 Mon Sep 17 00:00:00 2001 From: Kei Yamashita Date: Thu, 12 May 2016 00:44:48 -0400 Subject: [PATCH] gnu: Add libytnef. * gnu/packages/mail.scm (libytnef): 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 13749aa..da8e8df 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -13,6 +13,7 @@ ;;; Copyright © 2016 Al McElrath ;;; Copyright © 2016 Leo Famulari ;;; Copyright © 2016 Lukas Gradl +;;; Copyright © 2016 Kei Yamashita ;;; ;;; This file is part of GNU Guix. ;;; @@ -1203,3 +1204,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 libytnef + (package + (name "libytnef") + (version "1.5") + (source (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/ytnef/" + name "/" version "/" name + "-" version ".tar.gz")) + (sha256 + (base32 + "0bkmw5sypwbyrawbb66pkc7d6crck529bs0p36j42z045vja28hv")))) + (build-system gnu-build-system) + (home-page "https://github.com/Yeraze/ytnef") + (synopsis "Mail stream decoder") + (description + "ytnef is a program to decode TNEF streams (winmail.dat). Unlike other +similar programs, it can also decode meeting requests and create VCal entries +for easy import. It can also create vCard entries from contact cards and vTodo +entries from task entries.") + (license gpl2+))) -- 2.7.4