3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/inputmethods/fcitx5/fcitx5-configtool.nix

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

63 lines
1.1 KiB
Nix
Raw Normal View History

{ lib
2020-12-13 03:14:54 +00:00
, mkDerivation
, fetchFromGitHub
, cmake
, extra-cmake-modules
, fcitx5
, fcitx5-qt
, qtx11extras
2021-01-16 03:16:10 +00:00
, qtquickcontrols2
2020-12-13 03:14:54 +00:00
, kwidgetsaddons
, kdeclarative
, kirigami2
, isocodes
, xkeyboardconfig
, libxkbfile
, libXdmcp
, kcmSupport ? true
}:
mkDerivation rec {
pname = "fcitx5-configtool";
2022-03-10 01:49:27 +00:00
version = "5.0.12";
2020-12-13 03:14:54 +00:00
src = fetchFromGitHub {
owner = "fcitx";
2021-06-02 13:42:16 +01:00
repo = pname;
2020-12-13 03:14:54 +00:00
rev = version;
2022-03-10 01:49:27 +00:00
sha256 = "sha256-Xjk/Z+1V6Az85N5I+Icoj0kOPJVL7hxyQvqlsp50Ybk=";
2020-12-13 03:14:54 +00:00
};
cmakeFlags = [
"-DKDE_INSTALL_USE_QT_SYS_PATHS=ON"
];
nativeBuildInputs = [
cmake
extra-cmake-modules
];
buildInputs = [
fcitx5
fcitx5-qt
qtx11extras
2021-01-16 03:16:10 +00:00
qtquickcontrols2
2020-12-13 03:14:54 +00:00
kirigami2
isocodes
xkeyboardconfig
libxkbfile
libXdmcp
2021-01-15 09:19:50 +00:00
] ++ lib.optionals kcmSupport [
2020-12-13 03:14:54 +00:00
kdeclarative
kwidgetsaddons
];
2021-01-15 09:19:50 +00:00
meta = with lib; {
2020-12-13 03:14:54 +00:00
description = "Configuration Tool for Fcitx5";
homepage = "https://github.com/fcitx/fcitx5-configtool";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ poscat ];
platforms = platforms.linux;
};
}