python312Packages.llama-index: 0.12.9 -> 0.12.9.post1 (#371957)
[NixPkgs.git] / pkgs / by-name / li / libchewing / package.nix
blob5fe2d1090e8abc50985af7949703e0d258fb45e1
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   cmake,
6   sqlite,
7 }:
9 stdenv.mkDerivation (finalAttrs: {
10   pname = "libchewing";
11   version = "0.6.0";
13   src = fetchFromGitHub {
14     owner = "chewing";
15     repo = "libchewing";
16     rev = "v${finalAttrs.version}";
17     sha256 = "sha256-X+4Rr5Mfc4qeJxmHczu4MKgHBvQN1rhqUrJSx8SFnDk=";
18   };
20   buildInputs = [ sqlite ];
22   nativeBuildInputs = [ cmake ];
24   meta = with lib; {
25     description = "Intelligent Chinese phonetic input method";
26     homepage = "https://chewing.im/";
27     license = licenses.lgpl21Only;
28     maintainers = with maintainers; [
29       ericsagnes
30       ShamrockLee
31     ];
32     platforms = platforms.all;
33   };