about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorIan-Woo Kim <ianwookim@gmail.com>2015-09-07 05:17:41 +0000
committerVladimír Čunát <vcunat@gmail.com>2015-09-17 21:19:47 +0200
commit38d83144aaf5a784a7e9ecd85c852e362e549f2a (patch)
treeac4d59ef3f96d6f711dc0b3530946103e592747c /pkgs/development
parentee799e05bfa8d9189d392bb0faaef31d52565d40 (diff)
downloadnixlib-38d83144aaf5a784a7e9ecd85c852e362e549f2a.tar
nixlib-38d83144aaf5a784a7e9ecd85c852e362e549f2a.tar.gz
nixlib-38d83144aaf5a784a7e9ecd85c852e362e549f2a.tar.bz2
nixlib-38d83144aaf5a784a7e9ecd85c852e362e549f2a.tar.lz
nixlib-38d83144aaf5a784a7e9ecd85c852e362e549f2a.tar.xz
nixlib-38d83144aaf5a784a7e9ecd85c852e362e549f2a.tar.zst
nixlib-38d83144aaf5a784a7e9ecd85c852e362e549f2a.zip
libhangul, nabi: input method library and tool for korean
Close #9689. @vcunat removed empty buildInputs and refactored meta.
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/libhangul/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libhangul/default.nix b/pkgs/development/libraries/libhangul/default.nix
new file mode 100644
index 000000000000..79fc973731a6
--- /dev/null
+++ b/pkgs/development/libraries/libhangul/default.nix
@@ -0,0 +1,18 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation {
+  name = "libhangul-0.1.0";
+
+  src = fetchurl {
+    url = "https://libhangul.googlecode.com/files/libhangul-0.1.0.tar.gz";
+    sha256 = "0ni9b0v70wkm0116na7ghv03pgxsfpfszhgyj3hld3bxamfal1ar";
+  };
+
+  meta = with stdenv.lib; {
+    description = "Core algorithm library for Korean input routines";
+    homepage = https://code.google.com/p/libhangul;
+    license = licenses.lgpl21;
+    maintainers = [ maintainers.ianwookim ];
+    platforms = platforms.linux;
+  };
+}