1 { lib, stdenv, fetchurl, cmake, fcitx, gettext }:
3 stdenv.mkDerivation rec {
4 pname = "fcitx-table-other";
8 url = "http://download.fcitx-im.org/fcitx-table-other/${pname}-${version}.tar.xz";
9 sha256 = "1di60lr6l5k2sdwi3yrc0hl89j2k0yipayrsn803vd040w1fgfhq";
12 nativeBuildInputs = [ cmake ];
13 buildInputs = [ fcitx gettext ];
16 substituteInPlace tables/cmake_install.cmake \
17 --replace ${fcitx} $out
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 ];