guix_mirror_bot pushed a commit to branch master
in repository guix.

commit bfd34bd457c22584c15a3d729c9823eb79e5688b
Author: Wang Wen <[email protected]>
AuthorDate: Mon Aug 24 11:43:08 2026 +0800

    gnu: libhangul: Update to 0.2.0.
    
    * gnu/packages/ibus.scm (libhangul): Update to 0.2.0.
    [source]: Update URL to GitHub releases and update hash.
    [native-inputs]: Add autoconf-2.71, automake, gettext-minimal, libtool, and 
pkg-config.
    [inputs]: Add expat.
    
    Change-Id: I0c4675c9d85d8ec17954188c5ef0341b8b92a2c8
    Signed-off-by: 宋文武 <[email protected]>
---
 gnu/packages/ibus.scm | 18 +++++++++++++-----
 1 file changed, 13 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/ibus.scm b/gnu/packages/ibus.scm
index 10d5e10882..6013248fc5 100644
--- a/gnu/packages/ibus.scm
+++ b/gnu/packages/ibus.scm
@@ -952,16 +952,24 @@ traditional Chinese output.")
 (define-public libhangul
   (package
     (name "libhangul")
-    (version "0.1.0")
+    (version "0.2.0")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "http://kldp.net/hangul/release/";
-                           "3442-libhangul-" version ".tar.gz"))
+       (uri (string-append "https://github.com/libhangul/libhangul/releases/";
+                           "download/libhangul-" version
+                           "/libhangul-" version ".tar.gz"))
        (sha256
-        (base32
-         "0ni9b0v70wkm0116na7ghv03pgxsfpfszhgyj3hld3bxamfal1ar"))))
+        (base32 "082i79asdrzl7049v0yv6q86jy4c0rhif734nnis4h28ryhfc17a"))))
     (build-system gnu-build-system)
+    (native-inputs
+     (list autoconf-2.71
+           automake
+           gettext-minimal
+           libtool
+           pkg-config))
+    (inputs
+     (list (@ (gnu packages xml) expat)))
     (home-page "https://github.com/libhangul/libhangul";)
     (synopsis "Library to support hangul input method logic")
     (description

Reply via email to