From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33614) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fOep3-0003MA-Av for guix-patches@gnu.org; Fri, 01 Jun 2018 03:50:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fOep0-0008Ai-92 for guix-patches@gnu.org; Fri, 01 Jun 2018 03:50:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:48763) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fOep0-0008Ae-3v for guix-patches@gnu.org; Fri, 01 Jun 2018 03:50:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fOeoz-0004a1-TI for guix-patches@gnu.org; Fri, 01 Jun 2018 03:50:01 -0400 Subject: [bug#31502] [PATCH 05/21] gnu: Add emacs-evil-mu4e. References: <20180518184910.9987-5-ambrevar@gmail.com> In-Reply-To: <20180518184910.9987-5-ambrevar@gmail.com> Resent-Message-ID: From: Pierre Neidhardt Date: Fri, 1 Jun 2018 09:49:01 +0200 Message-Id: <20180601074901.27239-1-ambrevar@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 31502@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-evil-mu4e): New variable. --- gnu/packages/emacs.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 032fba56c..503c47d5c 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -10653,3 +10653,28 @@ 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 + "Keybindings for mu4e that make sense for Evil users.") + (license license:gpl3+))) -- 2.17.0