python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / misc / chewing-editor / default.nix
blob13ee17999fe112f97f2661ef608d8586f37c5a20
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     longDescription = ''
23       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.
24     '';
25     homepage = "https://github.com/chewing/chewing-editor";
26     license = licenses.gpl2Plus;
27     maintainers = [ maintainers.ShamrockLee ];
28     platforms = platforms.all;
29   };