nixpkgs/pkgs/tools/inputmethods/fcitx5/fcitx5-qt.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

59 lines
1.2 KiB
Nix
Raw Normal View History

{ lib
2020-12-13 04:07:21 +01:00
, mkDerivation
, fetchFromGitHub
, cmake
, extra-cmake-modules
, fcitx5
, qtx11extras
, libxcb
, libXdmcp
, qtbase
, qt6
2020-12-13 04:07:21 +01:00
}:
mkDerivation rec {
pname = "fcitx5-qt";
2022-07-05 16:24:55 +02:00
version = "5.0.14";
2020-12-13 04:07:21 +01:00
src = fetchFromGitHub {
owner = "fcitx";
2022-02-03 09:14:22 +01:00
repo = pname;
2020-12-13 04:07:21 +01:00
rev = version;
2022-07-05 16:24:55 +02:00
sha256 = "sha256-LmE6HgNLoJmgJtJmubAIjFi8Xpnmw3hgqJh6HUcakzg=";
2020-12-13 04:07:21 +01:00
};
preConfigure = ''
substituteInPlace qt5/platforminputcontext/CMakeLists.txt \
--replace \$"{CMAKE_INSTALL_QT5PLUGINDIR}" $out/${qtbase.qtPluginPrefix}
substituteInPlace qt6/platforminputcontext/CMakeLists.txt \
--replace \$"{CMAKE_INSTALL_QT6PLUGINDIR}" $out/${qt6.qtbase.qtPluginPrefix}
'';
2020-12-13 04:07:21 +01:00
cmakeFlags = [
# adding qt6 to buildInputs would result in error: detected mismatched Qt dependencies
"-DCMAKE_PREFIX_PATH=${qt6.qtbase.dev}"
2020-12-13 04:07:21 +01:00
"-DENABLE_QT4=0"
"-DENABLE_QT6=1"
2020-12-13 04:07:21 +01:00
];
nativeBuildInputs = [
cmake
extra-cmake-modules
];
buildInputs = [
fcitx5
qtx11extras
libxcb
libXdmcp
];
2021-01-15 10:19:50 +01:00
meta = with lib; {
2020-12-13 04:07:21 +01:00
description = "Fcitx5 Qt Library";
homepage = "https://github.com/fcitx/fcitx5-qt";
license = with licenses; [ lgpl21Plus bsd3 ];
maintainers = with maintainers; [ poscat ];
platforms = platforms.linux;
};
}