gnu: Add emacs-mbsync.

* gnu/packages/emacs.scm (emacs-mbsync): New public variable.
This commit is contained in:
Oleg Pykhalov 2018-05-02 19:02:54 +03:00
parent f61ecb8546
commit 666e561723
No known key found for this signature in database
GPG key ID: 7246E11C69B79569

View file

@ -8941,3 +8941,27 @@ (define-public emacs-beginend
locations. Redefined keys are still accessible by pressing the same
key again.")
(license license:gpl3+)))
(define-public emacs-mbsync
(let ((commit "42077e83ae2db778ce0f8e22f8357b40355526b3")
(revision "1"))
(package
(name "emacs-mbsync")
(version (string-append "0.0.1" "-" revision "."
(string-take commit 7)))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/dimitri/mbsync-el.git")
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"0yj93y2mpxlir8x73znlg1slxlv4blm1vjv5h2w3j8lxg8bxvmn6"))))
(build-system emacs-build-system)
(home-page "https://github.com/dimitri/mbsync-el")
(synopsis "Interface to mbsync for Emacs")
(description "This package allows to call the @code{mbsync} from
within Emacs.")
(license license:gpl3+))))