python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / inputmethods / fcitx5 / fcitx5-unikey.nix
blob3da555a1b198061d0ebc230798e43ac7705dd243
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , cmake
5 , extra-cmake-modules
6 , fcitx5
7 , fcitx5-qt
8 , gettext
9 , wrapQtAppsHook
12 stdenv.mkDerivation rec {
13   pname = "fcitx5-unikey";
14   version = "5.0.11";
16   src = fetchFromGitHub {
17     owner = "fcitx";
18     repo = "fcitx5-unikey";
19     rev = version;
20     sha256 = "sha256-pFFxTk97m/ThSrJglY+tSjjKCzXbj2EukdPg8fckoDU=";
21   };
23   nativeBuildInputs = [ cmake extra-cmake-modules wrapQtAppsHook ];
25   buildInputs = [ fcitx5 fcitx5-qt gettext ];
27   meta = with lib; {
28     description = "Unikey engine support for Fcitx5";
29     homepage = "https://github.com/fcitx/fcitx5-unikey";
30     license = licenses.gpl2Plus;
31     maintainers = with maintainers; [ berberman ];
32     platforms = platforms.linux;
33   };