guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 72f48ee0d4c6ad3e50fc9288f29c12a2a49ad8b0
Author: Jaesung Lee <[email protected]>
AuthorDate: Fri Dec 26 12:04:06 2025 +0900

    gnu: Add fcitx5-hangul.
    
    * gnu/packages/fcitx5.scm (fcitx5-hangul): New variable.
    
    Close: guix/guix#5126
    Change-Id: Icd5bc4cc6e9cd68e7ef99cec993b9097071980fc
    Signed-off-by: 宋文武 <[email protected]>
---
 gnu/packages/fcitx5.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/fcitx5.scm b/gnu/packages/fcitx5.scm
index be1f995037..6e08769c93 100644
--- a/gnu/packages/fcitx5.scm
+++ b/gnu/packages/fcitx5.scm
@@ -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+)))

Reply via email to