summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/inputmethods
diff options
context:
space:
mode:
authorPoscat <poscat@mail.poscat.moe>2020-12-13 11:07:21 +0800
committerPoscat <poscat@mail.poscat.moe>2021-01-10 14:30:58 +0800
commite42b4d312fb39a38ac487671c233dfe868e9d6db (patch)
tree3b8c773a718d3aecd91e32a9ba5a9f64f629440c /pkgs/tools/inputmethods
parent85a30b1fd8b86ce96fe6df2773ff782b79290917 (diff)
fcitx5-qt: Init at 5.0.1
Diffstat (limited to 'pkgs/tools/inputmethods')
-rw-r--r--pkgs/tools/inputmethods/fcitx5/fcitx5-qt.nix46
1 files changed, 46 insertions, 0 deletions
diff --git a/pkgs/tools/inputmethods/fcitx5/fcitx5-qt.nix b/pkgs/tools/inputmethods/fcitx5/fcitx5-qt.nix
new file mode 100644
index 000000000000..580082096ece
--- /dev/null
+++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-qt.nix
@@ -0,0 +1,46 @@
+{ stdenv
+, mkDerivation
+, fetchFromGitHub
+, cmake
+, extra-cmake-modules
+, fcitx5
+, qtx11extras
+, libxcb
+, libXdmcp
+}:
+
+mkDerivation rec {
+ pname = "fcitx5-qt";
+ version = "5.0.1";
+
+ src = fetchFromGitHub {
+ owner = "fcitx";
+ repo = "fcitx5-qt";
+ rev = version;
+ sha256 = "BVOumk2xj3vmwmm4KwiktQhWyTuUA2OFwYXNR6HgwyM=";
+ };
+
+ cmakeFlags = [
+ "-DENABLE_QT4=0"
+ ];
+
+ nativeBuildInputs = [
+ cmake
+ extra-cmake-modules
+ ];
+
+ buildInputs = [
+ fcitx5
+ qtx11extras
+ libxcb
+ libXdmcp
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Fcitx5 Qt Library";
+ homepage = "https://github.com/fcitx/fcitx5-qt";
+ license = with licenses; [ lgpl21Plus bsd3 ];
+ maintainers = with maintainers; [ poscat ];
+ platforms = platforms.linux;
+ };
+}