about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libchewing/default.nix
blob: 7cfa864fc06f6aebc6b7dce536f387d83bacd545 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, stdenv, fetchFromGitHub, sqlite, cmake }:

stdenv.mkDerivation rec {
  pname = "libchewing";
  version = "unstable-2020-06-27";

  src = fetchFromGitHub {
    owner = "chewing";
    repo = "libchewing";
    rev = "452f6221fbad90c0706a3963b17e226216e40dd7";
    sha256 = "sha256-w3/K2O/CU+XVzqzVCYJyq1vLgToN6iIUhJ9J7ia4p9E=";
  };

  buildInputs = [ sqlite ];

  nativeBuildInputs = [ cmake ];

  meta = with lib; {
    description = "Intelligent Chinese phonetic input method";
    homepage = "https://chewing.im/";
    license = licenses.lgpl21Only;
    maintainers = [ maintainers.ericsagnes ];
    platforms = platforms.linux;
  };
}