This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 4abf34c2db gnu: Add emacs-hel-leader.
4abf34c2db is described below

commit 4abf34c2db4f0b6d10514c7b6c4a88164d311c59
Author: jgart <[email protected]>
AuthorDate: Fri Jul 10 16:04:00 2026 +0100

    gnu: Add emacs-hel-leader.
    
    * gnu/packages/emacs-xyz.scm (emacs-hel-leader): New variable.
    
    Change-Id: I2badd683ca48cff81037901020a3b6459280013b
---
 gnu/packages/emacs-xyz.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 480c2c2d33..7e48f0b694 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -587,6 +587,32 @@ compatible.")
      "This package provides a Helix emulation layer for Emacs.")
     (license license:gpl3)))
 
+(define-public emacs-hel-leader
+  (package
+    (name "emacs-hel-leader")
+    (version "2.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/anuvyklack/hel-leader";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0lhs65sw4ivpbxwapapjimzcmspf67s41bpy8a8lg19m57ibr7mq"))))
+    (build-system emacs-build-system)
+    (arguments (list #:tests? #f)) ; There are no tests.
+    (propagated-inputs
+     (list emacs-dash
+           emacs-hel
+           emacs-s))
+    (home-page "https://github.com/anuvyklack/hel-leader";)
+    (synopsis "Leader key support for hel")
+    (description
+     "This package provides a leader key (like Space) for the Hel Helix
+emulation layer for Emacs.")
+    (license license:gpl3)))
+
 (define-public emacs-helix
   (package
     (name "emacs-helix")

Reply via email to