summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/emacs-xyz.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 4dd3aabc5c8..d9756474772 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -559,6 +559,30 @@ compatible.")
559@code{global-activity-watch-mode}.") 559@code{global-activity-watch-mode}.")
560 (license license:gpl3+))) 560 (license license:gpl3+)))
561 561
562(define-public emacs-hel
563 (package
564 (name "emacs-hel")
565 (version "0.10.0")
566 (source
567 (origin
568 (method git-fetch)
569 (uri (git-reference
570 (url "https://github.com/anuvyklack/hel")
571 (commit (string-append "v" version))))
572 (file-name (git-file-name name version))
573 (sha256
574 (base32 "0w3szydrwgjhy4as7snrkys7biixyvnfdgf0xdwmcspw3khljfcw"))))
575 (build-system emacs-build-system)
576 (propagated-inputs
577 (list emacs-avy
578 emacs-dash
579 emacs-pcre2el))
580 (home-page "https://github.com/anuvyklack/hel")
581 (synopsis "Helix emulation layer for Emacs")
582 (description
583 "This package provides a Helix emulation layer for Emacs.")
584 (license license:gpl3)))
585
562(define-public emacs-helix 586(define-public emacs-helix
563 (package 587 (package
564 (name "emacs-helix") 588 (name "emacs-helix")