python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / inputmethods / fcitx5 / fcitx5-m17n.nix
blob3c1b02a3d6ceb801e6ba4d93ac6ffa1a9ab6cfeb
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , cmake
5 , extra-cmake-modules
6 , pkg-config
7 , fcitx5
8 , m17n_lib
9 , m17n_db
10 , gettext
11 , fmt
14 stdenv.mkDerivation rec {
15   pname = "fcitx5-m17n";
16   version = "5.0.10";
18   src = fetchFromGitHub {
19     owner = "fcitx";
20     repo = pname;
21     rev = version;
22     sha256 = "sha256-u4rW89ofuKYCn+NcvdIy0eU+lZ7Lp9kp/d0NdHW2V1s=";
23   };
25   nativeBuildInputs = [
26     cmake
27     extra-cmake-modules
28     pkg-config
29     gettext
30   ];
32   buildInputs = [
33     fcitx5
34     m17n_db
35     m17n_lib
36     fmt
37   ];
39   meta = with lib; {
40     description = "m17n support for Fcitx5";
41     homepage = "https://github.com/fcitx/fcitx5-m17n";
42     license = licenses.lgpl21Plus;
43     maintainers = with maintainers; [ Technical27 ];
44     platforms = platforms.linux;
45   };