about summary refs log tree commit diff
path: root/pkgs/tools/inputmethods/fcitx/unwrapped.nix
blob: ba3a3f76ed93bc36b9a9e26b61327303d76b1b89 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{ stdenv, fetchurl, pkgconfig, cmake, intltool, gettext
, libxml2, enchant, isocodes, icu, libpthreadstubs
, pango, cairo, libxkbfile, libXau, libXdmcp, libxkbcommon
, dbus, gtk2, gtk3, qt4, kde5
}:

stdenv.mkDerivation rec {
  name = "fcitx-${version}";
  version = "4.2.9.1";

  src = fetchurl {
    url    = "http://download.fcitx-im.org/fcitx/${name}_dict.tar.xz";
    sha256 = "0xvcmm4yi7kagf55d0yl3ql5ssbkm9410fwbz3kd988pchichdsk";
  };

  postUnpack = ''
    ln -s ${kde5.extra-cmake-modules}/share/ECM/modules/ECMFindModuleHelpers.cmake \
      $sourceRoot/cmake/
  '';

  patches = [ ./fcitx-ecm.patch ];

  postPatch = ''
    substituteInPlace src/frontend/qt/CMakeLists.txt \
      --replace $\{QT_PLUGINS_DIR} $out/lib/qt4/plugins
  '';

  buildInputs = [
    cmake enchant gettext isocodes pkgconfig intltool icu
    libpthreadstubs libXau libXdmcp libxkbfile libxkbcommon libxml2
    dbus cairo gtk2 gtk3 pango qt4
  ];

  cmakeFlags = ''
    -DENABLE_QT_IM_MODULE=ON
    -DENABLE_GTK2_IM_MODULE=ON
    -DENABLE_GTK3_IM_MODULE=ON
    -DENABLE_GIR=OFF
    -DENABLE_OPENCC=OFF
    -DENABLE_PRESAGE=OFF
    -DENABLE_XDGAUTOSTART=OFF
  '';

  meta = with stdenv.lib; {
    homepage    = "https://github.com/fcitx/fcitx";
    description = "A Flexible Input Method Framework";
    license     = licenses.gpl2;
    platforms   = platforms.linux;
    maintainers = with maintainers; [ ericsagnes ];
  };
}