From 6874221403ec495982cad777c25eef59991c888e Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Wed, 25 Nov 2015 14:50:40 +0900 Subject: libchewing: init at 0.4.0 --- pkgs/development/libraries/libchewing/default.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pkgs/development/libraries/libchewing/default.nix (limited to 'pkgs/development/libraries/libchewing') diff --git a/pkgs/development/libraries/libchewing/default.nix b/pkgs/development/libraries/libchewing/default.nix new file mode 100644 index 0000000000000..0521ae8a04003 --- /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; + }; +} -- cgit 1.4.1