59 lines
1.1 KiB
Nix
59 lines
1.1 KiB
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, fetchFromGitHub
|
||
|
, cmake
|
||
|
, extra-cmake-modules
|
||
|
, fcitx5
|
||
|
, qtbase
|
||
|
, qtwayland
|
||
|
, wrapQtAppsHook
|
||
|
, wayland
|
||
|
}:
|
||
|
let
|
||
|
majorVersion = lib.versions.major qtbase.version;
|
||
|
in
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "fcitx5-qt${majorVersion}";
|
||
|
version = "5.1.7";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "fcitx";
|
||
|
repo = "fcitx5-qt";
|
||
|
rev = version;
|
||
|
hash = "sha256-C/LRpC6w/2cb/+xAwsmOVEvWmHMtJKD1pAwMoeLVIYY=";
|
||
|
};
|
||
|
|
||
|
postPatch = ''
|
||
|
substituteInPlace qt${majorVersion}/platforminputcontext/CMakeLists.txt \
|
||
|
--replace \$"{CMAKE_INSTALL_QT${majorVersion}PLUGINDIR}" $out/${qtbase.qtPluginPrefix}
|
||
|
'';
|
||
|
|
||
|
cmakeFlags = [
|
||
|
"-DENABLE_QT4=OFF"
|
||
|
"-DENABLE_QT5=OFF"
|
||
|
"-DENABLE_QT6=OFF"
|
||
|
"-DENABLE_QT${majorVersion}=ON"
|
||
|
];
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
cmake
|
||
|
extra-cmake-modules
|
||
|
wrapQtAppsHook
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
qtbase
|
||
|
qtwayland
|
||
|
fcitx5
|
||
|
wayland
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Fcitx5 Qt Library";
|
||
|
homepage = "https://github.com/fcitx/fcitx5-qt";
|
||
|
license = with licenses; [ lgpl21Plus bsd3 ];
|
||
|
maintainers = with maintainers; [ poscat ];
|
||
|
platforms = platforms.linux;
|
||
|
};
|
||
|
}
|