me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-pinyinlib.

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

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
master
Xinglu Chen 2021-09-12 10:59:43 +02:00 committed by Nicolas Goaziou
parent 3b1382e846
commit d541193370
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 22 additions and 0 deletions

View File

@ -13754,6 +13754,28 @@ containing words from the Rime project.")
shuangpin, wubi and cangjie.") shuangpin, wubi and cangjie.")
(license license:gpl2+))) (license license:gpl2+)))
(define-public emacs-pinyinlib
(package
(name "emacs-pinyinlib")
(version "0.1.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/cute-jumper/pinyinlib.el")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"1nwj4c3y0kdlkf3jqd2dnibaiazrq6qcj533xk2qw4wmx072yij0"))))
(build-system emacs-build-system)
(home-page "https://github.com/cute-jumper/pinyinlib.el")
(synopsis "Convert first letter of Pinyin to Chinese characters")
(description
"This Emacs library provides functionality for converting the first
letter of Pinyin to Simplified/Traditional Chinese characters.")
(license license:gpl3+)))
(define-public emacs-reverse-im (define-public emacs-reverse-im
(package (package
(name "emacs-reverse-im") (name "emacs-reverse-im")