python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / inputmethods / fcitx5 / fcitx5-table-other.nix
blob115af7e100a467cdc5df55367d2c48b6a4e5f002
1 { lib, stdenv
2 , fetchFromGitHub
3 , cmake
4 , extra-cmake-modules
5 , gettext
6 , libime
7 , boost
8 , fcitx5
9 }:
11 stdenv.mkDerivation rec {
12   pname = "fcitx5-table-other";
13   version = "5.0.10";
15   src = fetchFromGitHub {
16     owner = "fcitx";
17     repo = pname;
18     rev = version;
19     sha256 = "sha256-jdc1W8aLkR2VcpjiEOJNApxNGgNqWreEBkW1pjuy1WU=";
20   };
22   nativeBuildInputs = [
23     cmake
24     extra-cmake-modules
25     gettext
26     libime
27     boost
28     fcitx5
29   ];
31   meta = with lib; {
32     description = "Some other tables for Fcitx";
33     homepage = "https://github.com/fcitx/fcitx5-table-other";
34     license = licenses.gpl3Only;
35     maintainers = with maintainers; [ poscat ];
36     platforms = platforms.linux;
37   };