mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
688990ec89
If applied, users will be able to benefit from several bug fixes that stops the program from polluting their vocabulary database. There have been almost 5 years since v0.5.1 was released. Many important bugfix such as https://github.com/chewing/libchewing/pull/277 the fix for https://github.com/chewing/libchewing/issues/232 the error of incorrect phrases being stored into the user vocabulary database. There has almost been a year since the last commit on master, and it is quite stable on my laptop.
26 lines
643 B
Nix
26 lines
643 B
Nix
{ 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 = "http://chewing.im/";
|
|
license = licenses.lgpl21Only;
|
|
maintainers = [ maintainers.ericsagnes ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|