guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: Add isync.


From: Tomas Cech
Subject: 01/01: gnu: Add isync.
Date: Thu, 12 Mar 2015 20:56:56 +0000

sleep_walker pushed a commit to branch master
in repository guix.

commit 81ce19f45238bb504ce862d1553e81dcc8239519
Author: Tomáš Čech <address@hidden>
Date:   Wed Mar 11 12:42:56 2015 +0100

    gnu: Add isync.
    
    * gnu/packages/mail.scm (isync): New variable.
---
 gnu/packages/mail.scm |   23 +++++++++++++++++++++++
 1 files changed, 23 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 4aa74fe..552bf2c 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -29,6 +29,7 @@
   #:use-module (gnu packages backup)
   #:use-module (gnu packages curl)
   #:use-module (gnu packages cyrus-sasl)
+  #:use-module (gnu packages databases)
   #:use-module (gnu packages dejagnu)
   #:use-module (gnu packages emacs)
   #:use-module (gnu packages enchant)
@@ -626,4 +627,26 @@ deal of flexibility in the way mail can be routed, and 
there are extensive
 facilities for checking incoming mail.")
     (license gpl2+)))
 
+(define-public isync
+  (package
+    (name "isync")
+    (version "1.1.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://sourceforge/isync/isync/"
+                           version "/isync-" version ".tar.gz"))
+       (sha256 (base32
+                "1960ah3fmp75cakd06lcx50n5q0yvfsadjh3lffhyvjvj7ava9d2"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("bdb" ,bdb)
+       ("openssl" ,openssl)))
+    (home-page "http://isync.sourceforge.net/";)
+    (synopsis "Mailbox synchronization program")
+    (description
+     "isync/mbsync is command line tool for two-way synchronization of
+mailboxes.  Currently Maildir and IMAP are supported types.")
+    (license gpl2+)))
+
 ;;; mail.scm ends here



reply via email to

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