diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-04-24 11:10:50 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-04-24 11:10:50 +0200 |
commit | 4602f686e21eb9fef3b29978fb324f561f2a8533 (patch) | |
tree | e6f667ccd4fc2e88b44f63e5f5b1069de90419f9 /gnu | |
parent | 8b0ae1eb72d2844d83c5da2b3393088446bc73d1 (diff) |
gnu: Add emacs-wisp-mode.
* gnu/packages/emacs-xyz.scm (emacs-wisp-mode): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 5d1f587688..f765bef72b 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -27774,6 +27774,27 @@ commands. Additional optional enhancements can be provided externally by complementary packages.") (license license:gpl3+))) +(define-public emacs-wisp-mode + (package + (name "emacs-wisp-mode") + (version "0.2.9") + (source + (origin + (method hg-fetch) + (uri (hg-reference + (url "https://hg.sr.ht/~arnebab/wisp") + (changeset (string-append "wisp-mode-" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1xdzyj3yqzvdg0vrllp9wi8cswpa89i0gmiz22a25brw4qy185ar")))) + (build-system emacs-build-system) + (home-page "https://www.draketo.de/software/wisp") + (synopsis "Syntax highlighting and indentation support for Wisp files") + (description + "This package provides @code{wisp-mode}, an Emacs major mode for Wisp +files, providing syntax highlighting and indentation rules.") + (license license:gpl3+))) + (define-public emacs-ivy-hydra (package (name "emacs-ivy-hydra") |