about summary refs log tree commit diff
path: root/pkgs/development/libraries/libchewing
diff options
context:
space:
mode:
authorEric Sagnes <eric.sagnes@gmail.com>2015-11-25 14:50:40 +0900
committer宋文武 <iyzsong@gmail.com>2015-11-26 16:12:25 +0800
commit6874221403ec495982cad777c25eef59991c888e (patch)
treee5718ba7b3be7fbdfef594cb22c325d13bc010da /pkgs/development/libraries/libchewing
parentda29db5d41e35a2c0e00a230dd0f8673be2aaa4d (diff)
downloadnixlib-6874221403ec495982cad777c25eef59991c888e.tar
nixlib-6874221403ec495982cad777c25eef59991c888e.tar.gz
nixlib-6874221403ec495982cad777c25eef59991c888e.tar.bz2
nixlib-6874221403ec495982cad777c25eef59991c888e.tar.lz
nixlib-6874221403ec495982cad777c25eef59991c888e.tar.xz
nixlib-6874221403ec495982cad777c25eef59991c888e.tar.zst
nixlib-6874221403ec495982cad777c25eef59991c888e.zip
libchewing: init at 0.4.0
Diffstat (limited to 'pkgs/development/libraries/libchewing')
-rw-r--r--pkgs/development/libraries/libchewing/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libchewing/default.nix b/pkgs/development/libraries/libchewing/default.nix
new file mode 100644
index 000000000000..0521ae8a0400
--- /dev/null
+++ b/pkgs/development/libraries/libchewing/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl, sqlite }:
+
+stdenv.mkDerivation rec{
+  name = "libchewing-${version}";
+  version = "0.4.0";
+
+  src = fetchurl {
+    url = "https://github.com/chewing/libchewing/releases/download/v${version}/libchewing-${version}.tar.bz2";
+    sha256 = "1j5g5j4w6yp73k03pmsq9n2r0p458hqriq0sd5kisj9xrssbynp5";
+  };
+
+  buildInputs = [ sqlite ];
+
+  meta = with stdenv.lib; {
+    description = "Intelligent Chinese phonetic input method";
+    homepage = http://chewing.im/;
+    license = licenses.lgpl21;
+    maintainers = [ maintainers.ericsagnes ];
+    platforms = platforms.linux;
+  };
+}