diff options
author | Pierre Neidhardt <ambrevar@gmail.com> | 2018-06-01 09:49:01 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-06-02 16:02:51 +0200 |
commit | e1e09bcb43626cceb96e29dc0c7a626fd6d4aba2 (patch) | |
tree | bd14e05ddb086e6556eb40a59440f5f239e6d947 /gnu | |
parent | c6c1f0bf413295ccb8ebbec5612bceee94f2bfe1 (diff) | |
download | guix-e1e09bcb43626cceb96e29dc0c7a626fd6d4aba2.tar.gz |
gnu: Add emacs-evil-mu4e.
* gnu/packages/emacs.scm (emacs-evil-mu4e): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 61d01a9de6..f589f23e84 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -10666,3 +10666,29 @@ For some background see @url{https://github.com/magit/evil-magit/issues/1}. See the README at @url{https://github.com/justbur/evil-magit} for a table describing the key binding changes.") (license license:gpl3+)))) + +(define-public emacs-evil-mu4e + (package + (name "emacs-evil-mu4e") + (version "0.0.8") + (source + (origin + (method url-fetch) + (uri (string-append + "https://github.com/JorisE/evil-mu4e/archive/" + "c03a0e11afda3092eb1461be09fa6a61ebc0e4f6" + ".tar.gz")) + (sha256 + (base32 + "1k3z5h04bqslrkq13paqf8pv9r0rf0zjl0zbb57ly043ds3nvxr2")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-dash" ,emacs-dash) + ("emacs-evil" ,emacs-evil) + ("mu" ,mu))) + (home-page "https://github.com/JorisE/evil-mu4e") + (synopsis "Evil-based key bindings for mu4e") + (description + "Use keybindings for the mu4e mail reader in Emacs that make sense for +Evil users.") + (license license:gpl3+))) |