python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / inputmethods / fcitx5 / fcitx5-chewing.nix
blob76a48e4d03c811119b74ed2ca7d11969112be91f
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , cmake
5 , extra-cmake-modules
6 , gettext
7 , fcitx5
8 , libchewing
9 }:
11 stdenv.mkDerivation rec {
12   pname = "fcitx5-chewing";
13   version = "5.0.12";
15   src = fetchFromGitHub {
16     owner = "fcitx";
17     repo = pname;
18     rev = version;
19     sha256 = "sha256-3VC6hp8WN6Ttfw5TcpgjTUYxXJxmU6SUw7ZfjR+Laig=";
20   };
22   nativeBuildInputs = [
23     cmake
24     extra-cmake-modules
25     gettext
26   ];
28   buildInputs = [
29     fcitx5
30     libchewing
31   ];
33   meta = with lib; {
34     description = "Chewing wrapper for Fcitx5";
35     homepage = "https://github.com/fcitx/fcitx5-chewing";
36     license = licenses.lgpl21Plus;
37     maintainers = with maintainers; [ xrelkd ];
38     platforms = platforms.linux;
39   };