diff options
author | Vinicius Monego <monego@posteo.net> | 2022-01-06 00:25:25 +0000 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-01-07 21:20:01 +0100 |
commit | 15f6798e5be05374beb0134dea42cd06c5acd6a9 (patch) | |
tree | 83c52cc6a5022bcd417b68a26bb1b93035e7ee8f /gnu/packages | |
parent | 3a08655d59d857a2aeb03d4215df659e19ee4cff (diff) | |
download | guix-15f6798e5be05374beb0134dea42cd06c5acd6a9.tar guix-15f6798e5be05374beb0134dea42cd06c5acd6a9.tar.gz |
gnu: Add emacs-meow.
* gnu/packages/emacs-xyz.scm (emacs-meow): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 4d6d1e23ab..a98ec10cf3 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -71,7 +71,7 @@ ;;; Copyright © 2020 Alberto Eleuterio Flores Guerrero <barbanegra+guix@posteo.mx> ;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com> ;;; Copyright © 2020 pinoaffe <pinoaffe@airmail.cc> -;;; Copyright © 2020, 2021 Vinicius Monego <monego@posteo.net> +;;; Copyright © 2020, 2021, 2022 Vinicius Monego <monego@posteo.net> ;;; Copyright © 2020 Ryan Desfosses <rdes@protonmail.com> ;;; Copyright © 2020 Marcin Karpezo <sirmacik@wioo.waw.pl> ;;; Copyright © 2020 Fredrik Salomonsson <plattfot@gmail.com> @@ -14015,6 +14015,28 @@ and lambdas.") which code derived from Kelvin H's org-page.") (license license:gpl2+))) +(define-public emacs-meow + (package + (name "emacs-meow") + (version "1.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/meow-edit/meow") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "048y1sgsl7amcsq8pxw9m2fws1zcjwbsqs1lnsz30dx6qasdmjf1")))) + (build-system emacs-build-system) + (home-page "https://github.com/meow-edit/meow") + (synopsis "Yet another modal editing on Emacs") + (description "Meow is yet another modal editing mode for Emacs. It aims +to blend modal editing into Emacs with minimum interface with its original +key-bindings, avoiding most if not all the hassle introduced by key-binding +conflicts.") + (license license:gpl3+))) + (define-public emacs-xelb (package (name "emacs-xelb") |