guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#31507] [PATCH 04/21] gnu: emacs-evil-magit: New variable.


From: Pierre Neidhardt
Subject: [bug#31507] [PATCH 04/21] gnu: emacs-evil-magit: New variable.
Date: Fri, 18 May 2018 20:48:58 +0200

* gnu/packages/emacs.scm (emacs-evil-magit): New variable.
---
 gnu/packages/emacs.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index fd2fc54fc..1685a3d2e 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -10539,3 +10539,31 @@ autosuggestions with:
 users of vim-like keybindings.  Consult the help buffer for more
 information.")
     (license license:gpl3+)))
+
+(define-public emacs-evil-magit
+  (package
+    (name "emacs-evil-magit")
+    (version "20180410.804")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://melpa.org/packages/evil-magit-";
+             version
+             ".el"))
+       (sha256
+        (base32
+         "19cfgsdlyjldwic5ff7104b7a21l206gmsddsr13w3b6974f4xik"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-evil" ,emacs-evil)
+       ("magit" ,magit)))
+    (home-page
+     "https://github.com/emacs-evil/evil-magit";)
+    (synopsis "Evil-based key bindings for magit")
+    (description
+     "This library configures Magit and Evil to play well with each other.
+For some background see https://github.com/magit/evil-magit/issues See the
+README at https://github.com/justbur/evil-magit for a table describing the key
+binding changes.")
+    (license license:gpl3+)))
-- 
2.17.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]