~ruther/guix-local

57230893358edbd1f64f292bed2955def48c0e8d — Matthias Riße 6 months ago 8069735
gnu: Add emacs-helix.

* gnu/packages/emacs-xyz.scm (emacs-helix): New variable.

Change-Id: I94163833047e445584141ecb67281a279f58ee6a
1 files changed, 30 insertions(+), 0 deletions(-)

M gnu/packages/emacs-xyz.scm
M gnu/packages/emacs-xyz.scm => gnu/packages/emacs-xyz.scm +30 -0
@@ 503,6 503,36 @@ states–that is, any major mode that supports the bookmark system is
compatible.")
    (license license:gpl3+)))

(define-public emacs-helix
  (package
    (name "emacs-helix")
    (version "0.8.0")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/mgmarlow/helix-mode")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "12frkqmv0qbs4rqxdazki6xvhdb6ykr4xsrzk8ljlj19dniawhd8"))))
    (build-system emacs-build-system)
    (arguments
     (list
      #:test-command
      #~(list "emacs"
              "-Q"
              "--batch"
              "-l"
              "helix-test.el"
              "-f"
              "ert-run-tests-batch-and-exit")))
    (home-page "https://github.com/mgmarlow/helix-mode")
    (synopsis "Helix keybindings in Emacs")
    (description
     "This package provides a minor mode emulating Helix keybindings.")
    (license license:gpl3+)))

(define-public emacs-sops
  (package
    (name "emacs-sops")