diff options
author | Eric Bavier <bavier@member.fsf.org> | 2014-05-20 09:00:04 -0500 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2014-05-20 09:02:39 -0500 |
commit | 3919a31a75f4de5c88decff60f9be737a36e626c (patch) | |
tree | fa81d90962fd4f18d7d5710c5549a82ba93b81a6 /gnu | |
parent | b10e9ff6da886a787e37c3bf34da9e80406ae14b (diff) | |
download | gnu-guix-3919a31a75f4de5c88decff60f9be737a36e626c.tar gnu-guix-3919a31a75f4de5c88decff60f9be737a36e626c.tar.gz |
gnu: Add offlineimap
* gnu/packages/mail.scm (offlineimap): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/mail.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 3790b583ee..1ba75da02b 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -32,6 +32,7 @@ #:use-module (gnu packages ncurses) #:use-module (gnu packages openssl) #:use-module (gnu packages perl) + #:use-module (gnu packages python) #:use-module (gnu packages readline) #:use-module (gnu packages texinfo) #:use-module (gnu packages compression) @@ -44,6 +45,7 @@ #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) + #:use-module (guix build-system python) #:use-module (srfi srfi-1)) (define-public mailutils @@ -253,4 +255,30 @@ content (body). The program is able to learn from the user's classifications and corrections. It is based on a Bayesian filter.") (license gpl2))) +(define-public offlineimap + (package + (name "offlineimap") + (version "6.5.5") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/OfflineIMAP/offlineimap/" + "archive/v" version ".tar.gz")) + (sha256 + (base32 + "00k84qagph3xnxss6rkxm61x07ngz8fvffx4z9jyw5baf3cdd32p")))) + (build-system python-build-system) + (native-inputs `(("python" ,python-2))) + (arguments + ;; The setup.py script expects python-2. + `(#:python ,python-2 + ;; Tests require a modifiable IMAP account. + #:tests? #f)) + (home-page "http://www.offlineimap.org") + (synopsis "Synch emails between two repositories") + (description + "OfflineImap synchronizes emails between two repositories, so that you +can read the same mailbox from multiple computers. It supports IMAP as REMOTE +repository and Maildir/IMAP as LOCAL repository.") + (license gpl2))) + ;;; mail.scm ends here |