132326bd37
Semi-automatic update. These checks were performed: - built on NixOS - found 0.5.1 with grep in /nix/store/j3cl2l9f1m6p14b5y8cf24p4hqhw9nsn-libchewing-0.5.1 - found 0.5.1 in filename of file in /nix/store/j3cl2l9f1m6p14b5y8cf24p4hqhw9nsn-libchewing-0.5.1 cc "@ericsagnes"
22 lines
589 B
Nix
22 lines
589 B
Nix
{ stdenv, fetchurl, sqlite }:
|
|
|
|
stdenv.mkDerivation rec{
|
|
name = "libchewing-${version}";
|
|
version = "0.5.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/chewing/libchewing/releases/download/v${version}/libchewing-${version}.tar.bz2";
|
|
sha256 = "0aqp2vqgxczydpn7pxi7r6xf3l1hgl710f0gbi1k8q7s2lscc24p";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|