python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / inputmethods / fcitx-engines / fcitx-table-other / default.nix
blob410569b7afbd4e4d8449f5818228af06e72302bc
1 { lib, stdenv, fetchurl, cmake, fcitx, gettext }:
3 stdenv.mkDerivation rec {
4   pname = "fcitx-table-other";
5   version = "0.2.4";
7   src = fetchurl {
8     url = "http://download.fcitx-im.org/fcitx-table-other/${pname}-${version}.tar.xz";
9     sha256 = "1di60lr6l5k2sdwi3yrc0hl89j2k0yipayrsn803vd040w1fgfhq";
10   };
12   nativeBuildInputs = [ cmake ];
13   buildInputs = [ fcitx gettext ];
15   preInstall = ''
16    substituteInPlace tables/cmake_install.cmake \
17       --replace ${fcitx} $out
18   '';
20   meta = with lib; {
21     isFcitxEngine = true;
22     homepage      = "https://github.com/fcitx/fcitx-table-other";
23     downloadPage  = "http://download.fcitx-im.org/fcitx-table-other/";
24     description   = "Provides some other tables for Fcitx";
25     license       = licenses.gpl3Plus;
26     platforms     = platforms.linux;
27     maintainers   = with maintainers; [ ericsagnes ];
28   };