~ruther/guix-local

72f48ee0d4c6ad3e50fc9288f29c12a2a49ad8b0 — Jaesung Lee 6 months ago dc711aa
gnu: Add fcitx5-hangul.

* gnu/packages/fcitx5.scm (fcitx5-hangul): New variable.

Close: guix/guix#5126
Change-Id: Icd5bc4cc6e9cd68e7ef99cec993b9097071980fc
Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
1 files changed, 22 insertions(+), 0 deletions(-)

M gnu/packages/fcitx5.scm
M gnu/packages/fcitx5.scm => gnu/packages/fcitx5.scm +22 -0
@@ 692,3 692,25 @@ as well as those for Chinese dialects.  It has the ability to compose phrases
and sentences intelligently and provide very accurate traditional Chinese
output.")
    (license license:lgpl2.1+)))

(define-public fcitx5-hangul
  (package
    (name "fcitx5-hangul")
    (version "5.1.7")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/fcitx/fcitx5-hangul")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "02lkbwg25jr4hazjyxcy69midfsmxc0ksbdrfwbmqcfa3kz5d9gb"))))
    (build-system cmake-build-system)
    (native-inputs (list extra-cmake-modules pkg-config gettext-minimal))
    (inputs (list fcitx5 libhangul))
    (home-page "https://github.com/fcitx/fcitx5-hangul")
    (synopsis "Hangul support for Fcitx5")
    (description
     "This package provides the Hangul (Korean) input method engine for Fcitx5.")
    (license license:lgpl2.1+)))