mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
58 lines
1.1 KiB
Nix
58 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.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fcitx";
|
|
repo = "fcitx5-qt";
|
|
rev = version;
|
|
hash = "sha256-ptAJNc7zhXQ+nFfjmVQd5nZvN5lyk0jV6AHBKQkUGOM=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|