diff options
author | Spencer King <spencer@nursiapress.com> | 2024-06-18 22:47:43 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-06-18 23:56:26 +0200 |
commit | 9ae06fe58a0414a0ce98820b829cfba81f3014b1 (patch) | |
tree | 77133a3566c59340dc6e738279ae455fca40a326 /gnu | |
parent | f353a7ec4bf1a717481ec2abd2478cfece8afa55 (diff) | |
download | guix-9ae06fe58a0414a0ce98820b829cfba81f3014b1.tar guix-9ae06fe58a0414a0ce98820b829cfba81f3014b1.tar.gz |
gnu: Add emacs-devil.
* gnu/packages/emacs-xyz.scm (emacs-devil): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Change-Id: Iaeaff6bbcc0631edc44476aed198c3e3760bbe94
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 7b77707a94..1b634bbbd7 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -27032,6 +27032,31 @@ device tree files.") for editing Devicetree files.") (license license:gpl3+))) +(define-public emacs-devil + (package + (name "emacs-devil") + (version "0.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/susam/devil") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pr9yf6f37sz5qy1snn8ag5bvg6lza7q635jh8jhaqqfp37jvv1y")))) + (build-system emacs-build-system) + (arguments + (list #:tests? #true + #:test-command #~(list "make" "tests"))) + (home-page "https://github.com/susam/devil") + (synopsis "Minor mode for translating key sequences") + (description + "Devil intercepts your devil key (comma by default) to let you type key +sequences without using modifier keys. Devil is highly configurable and it +can be configured to perform other key sequence translations.") + (license license:expat))) + (define-public emacs-daemons (package (name "emacs-daemons") |