about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/inputmethods/fcitx-engines/fcitx-table-extra/default.nix
blob: 399d426dc3e8223ced3ec17596ae6bf8571eb2cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib, stdenv, fetchurl, cmake, fcitx, gettext }:

stdenv.mkDerivation rec {
  pname = "fcitx-table-extra";
  version = "0.3.8";

  src = fetchurl {
    url = "http://download.fcitx-im.org/fcitx-table-extra/${pname}-${version}.tar.xz";
    sha256 = "c91bb19c1a7b53c5339bf2f75ae83839020d337990f237a8b9bc0f4416c120ef";
  };

  nativeBuildInputs = [ cmake ];
  buildInputs = [ fcitx gettext ];

  preInstall = ''
   substituteInPlace tables/cmake_install.cmake \
      --replace ${fcitx} $out
  '';

  meta = with lib; {
    isFcitxEngine = true;
    homepage      = "https://github.com/fcitx/fcitx-table-extra";
    downloadPage  = "http://download.fcitx-im.org/fcitx-table-extra/";
    description   = "Provides extra table for Fcitx, including Boshiamy, Zhengma, Cangjie, and Quick";
    license       = licenses.gpl2Plus;
    platforms     = platforms.linux;
    maintainers   = with maintainers; [ linc01n ];
  };

}