depot/third_party/nixpkgs/pkgs/development/libraries/libchewing/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

21 lines
580 B
Nix

{ lib, 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 lib; {
description = "Intelligent Chinese phonetic input method";
homepage = "http://chewing.im/";
license = licenses.lgpl21;
maintainers = [ maintainers.ericsagnes ];
platforms = platforms.linux;
};
}