mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
2056f56f77
Fixes #17252. (Really, this time.) Now that extra-cmake-modules does not depend on Qt 5, it is possible to depend on it directly.
46 lines
1.3 KiB
Nix
46 lines
1.3 KiB
Nix
{ stdenv, fetchurl, pkgconfig, cmake, intltool, gettext
|
|
, libxml2, enchant, isocodes, icu, libpthreadstubs
|
|
, pango, cairo, libxkbfile, libXau, libXdmcp, libxkbcommon
|
|
, dbus, gtk2, gtk3, qt4, extra-cmake-modules
|
|
}:
|
|
|
|
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";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/frontend/qt/CMakeLists.txt \
|
|
--replace $\{QT_PLUGINS_DIR} $out/lib/qt4/plugins
|
|
'';
|
|
|
|
nativeBuildInputs = [ cmake extra-cmake-modules intltool pkgconfig ];
|
|
|
|
buildInputs = [
|
|
enchant gettext isocodes 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 ];
|
|
};
|
|
}
|