[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/02: gnu: Add emacs-reverse-im.
From: |
guix-commits |
Subject: |
01/02: gnu: Add emacs-reverse-im. |
Date: |
Sat, 12 Jun 2021 16:13:47 -0400 (EDT) |
ngz pushed a commit to branch master
in repository guix.
commit 24e731ab478bf89487805d4522ce012802c2b364
Author: Alexandr Vityazev <avityazev@posteo.org>
AuthorDate: Sun Jun 6 19:52:33 2021 +0000
gnu: Add emacs-reverse-im.
* gnu/packages/emacs-xyz.scm (emacs-reverse-im): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
gnu/packages/emacs-xyz.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 1d954ec..521a2fd 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -13302,6 +13302,27 @@ containing words from the Rime project.")
shuangpin, wubi and cangjie.")
(license license:gpl2+)))
+(define-public emacs-reverse-im
+ (package
+ (name "emacs-reverse-im")
+ (version "0.0.7")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/a13/reverse-im.el")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "05k2zp2hldzq5h6nl8gx79dd8lvfn507ad4x3naichdqgn2013nn"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/a13/reverse-im.el")
+ (synopsis "Reverse mapping for non-default system layouts")
+ (description
+ "Reverse IM provides a minor mode that toggles translations for all input
+methods from a given list.")
+ (license license:gpl3+)))
+
(define-public emacs-posframe
(package
(name "emacs-posframe")