biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / chewing-editor / default.nix
blob9cf163055a4bc2cbe20febc5a3f99ec5c6760f23
1 { lib, mkDerivation, fetchFromGitHub, cmake, pkg-config, libchewing, qtbase
2 , qttools }:
4 mkDerivation rec {
5   pname = "chewing-editor";
6   version = "0.1.1";
8   src = fetchFromGitHub {
9     owner = "chewing";
10     repo = pname;
11     rev = version;
12     sha256 = "0kc2hjx1gplm3s3p1r5sn0cyxw3k1q4gyv08q9r6rs4sg7xh2w7w";
13   };
15   doCheck = true;
17   nativeBuildInputs = [ cmake pkg-config ];
18   buildInputs = [ libchewing qtbase qttools ];
20   meta = with lib; {
21     description = "Cross platform chewing user phrase editor";
22     mainProgram = "chewing-editor";
23     longDescription = ''
24       chewing-editor is a cross platform chewing user phrase editor. It provides a easy way to manage user phrase. With it, user can customize their user phrase to increase input performance.
25     '';
26     homepage = "https://github.com/chewing/chewing-editor";
27     license = licenses.gpl2Plus;
28     maintainers = [ maintainers.ShamrockLee ];
29     platforms = platforms.all;
30   };