guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: gnu: Add libhangul.


From: guix-commits
Subject: 01/02: gnu: Add libhangul.
Date: Fri, 3 Jan 2020 01:20:55 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 94b8fe80419b835dbcab989a48d272c2bb65798f
Author: address@hidden <address@hidden>
Date:   Thu Jan 2 13:52:44 2020 +0300

    gnu: Add libhangul.
    
    * gnu/packages/ibus.scm (libhangul): New variable.
    
    Signed-off-by: Ricardo Wurmus <address@hidden>
---
 gnu/packages/ibus.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/ibus.scm b/gnu/packages/ibus.scm
index 23cd670..01d14c8 100644
--- a/gnu/packages/ibus.scm
+++ b/gnu/packages/ibus.scm
@@ -5,6 +5,7 @@
 ;;; Copyright © 2017, 2018 Efraim Flashner <address@hidden>
 ;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <address@hidden>
 ;;; Copyright © 2018, 2019 Meiyo Peng <address@hidden>
+;;; Copyright © 2020 kanichos <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -688,3 +689,23 @@ input methods 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 gpl3+)))
+
+(define-public libhangul
+  (package
+    (name "libhangul")
+    (version "0.1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "http://kldp.net/hangul/release/";
+                           "3442-libhangul-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0ni9b0v70wkm0116na7ghv03pgxsfpfszhgyj3hld3bxamfal1ar"))))
+    (build-system gnu-build-system)
+    (home-page "https://github.com/libhangul/libhangul";)
+    (synopsis "Library to support hangul input method logic")
+    (description
+     "This package provides a library to support hangul input method logic,
+hanja dictionary and small hangul character classification.")
+    (license lgpl2.1+)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]