ngz pushed a commit to branch master
in repository guix.
commit 63bf5ba1d82939eab6f2147b964fcd2c60182e24
Author: Cayetano Santos <[email protected]>
AuthorDate: Tue Feb 7 22:00:00 2023 +0100
gnu: Add emacs-discover.
* gnu/packages/emacs-xyz.scm (emacs-discover): New variable.
Signed-off-by: Nicolas Goaziou <[email protected]>
---
gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index bbaafcc730..8c51d06059 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -34723,6 +34723,29 @@ line. This minor mode provides an easy way to run it
from Emacs on the
current region or entire buffer.")
(license license:gpl3+))))
+(define-public emacs-discover
+ (package
+ (name "emacs-discover")
+ (version "0.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/mickeynp/discover.el")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0qxw30zrlcxhxb0alrgyiclrk44dysal8xsbz2mvgrb6jli8wg18"))))
+ (build-system emacs-build-system)
+ (propagated-inputs (list emacs-makey))
+ (home-page "https://github.com/mickeynp/discover.el")
+ (synopsis "Discover more of Emacs using context menus")
+ (description
+ "Discover adds context menus to commonly-used features in Emacs.")
+ (license license:gpl3+)))
+
(define-public emacs-nasm-mode
(package
(name "emacs-nasm-mode")