parent
91f0629934
commit
81ce19f452
|
@ -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
|
||||
|
|
Reference in New Issue