ngz pushed a commit to branch master
in repository guix.

commit b9f7e07f2b5b596b99756d61f1666efd0134afee
Author: Nicolas Graves <ngra...@ngraves.fr>
AuthorDate: Tue May 21 08:51:08 2024 +0200

    gnu: Add emacs-context-transient.
    
    * gnu/packages/emacs-xyz.scm (emacs-context-transient): New variable.
    
    Change-Id: I53c15839bf4979464e8dd6fe2217b9fdbdee56c5
    Signed-off-by: Nicolas Goaziou <m...@nicolasgoaziou.fr>
---
 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 26671853e3..d3e26e07d3 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -39519,6 +39519,29 @@ workspace diagnostics, symbols, and file symbols from 
@{emacs-lsp-mode}
 by leveraging @code{emacs-consult} APIs.")
     (license license:expat)))
 
+(define-public emacs-context-transient
+  (let ((commit "16b8e16645ebcdc44d2777ba16ac85e1d3ee468b")
+        (revision "0"))
+    (package
+      (name "emacs-context-transient")
+      (version (git-version "1.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/licht1stein/context-transient.el";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "147yv3ih9il6a4k2cw1kcqgdpls83jf7aspjf8km650ry0apycc6"))))
+      (build-system emacs-build-system)
+      (home-page "https://github.com/licht1stein/context-transient.el";)
+      (synopsis "Context specific transients")
+      (description "This package makes it easy to define and call
+context-specific @code{emacs-transient} menus for current project, git repo,
+buffer or any other condition.")
+      (license license:gpl3+))))
+
 (define-public emacs-purs-mode
   ;; XXX: Upstream set no tag nor any Version keyword.  Using 0 as the base
   ;; version.

Reply via email to