2015-11-25 05:50:40 +00:00
|
|
|
{ stdenv, fetchurl, sqlite }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec{
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libchewing";
|
2018-02-27 04:13:20 +00:00
|
|
|
version = "0.5.1";
|
2015-11-25 05:50:40 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/chewing/libchewing/releases/download/v${version}/libchewing-${version}.tar.bz2";
|
2018-02-27 04:13:20 +00:00
|
|
|
sha256 = "0aqp2vqgxczydpn7pxi7r6xf3l1hgl710f0gbi1k8q7s2lscc24p";
|
2015-11-25 05:50:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|