depot/third_party/nixpkgs/pkgs/development/libraries/libchewing/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

21 lines
581 B
Nix

{ stdenv, fetchurl, sqlite }:
stdenv.mkDerivation rec{
pname = "libchewing";
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;
};
}