about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix')
-rw-r--r--nixpkgs/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix38
1 files changed, 0 insertions, 38 deletions
diff --git a/nixpkgs/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix b/nixpkgs/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix
deleted file mode 100644
index 391c2c7add2b..000000000000
--- a/nixpkgs/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{ lib, mkDerivation, fetchFromGitLab
-, cmake
-, extra-cmake-modules
-, fcitx
-, pkg-config
-, qtbase
-}:
-
-mkDerivation rec {
-  pname = "fcitx-qt5";
-  version = "1.2.3";
-
-  src = fetchFromGitLab {
-    owner = "fcitx";
-    repo = pname;
-    rev = version;
-    sha256 = "0860v3rxsh054wkkbawvyin5mk0flp4cwfcpmcpq147lvdm5lq2i";
-  };
-
-  nativeBuildInputs = [ cmake extra-cmake-modules pkg-config ];
-
-  buildInputs = [ fcitx qtbase ];
-
-  preConfigure = ''
-    substituteInPlace platforminputcontext/CMakeLists.txt \
-      --replace \$"{CMAKE_INSTALL_QTPLUGINDIR}" $out/${qtbase.qtPluginPrefix}
-    substituteInPlace quickphrase-editor/CMakeLists.txt \
-      --replace \$"{FCITX4_ADDON_INSTALL_DIR}" $out/lib/fcitx
-  '';
-
-  meta = with lib; {
-    homepage    = "https://gitlab.com/fcitx/fcitx-qt5";
-    description = "Qt5 IM Module for Fcitx";
-    license     = licenses.gpl2;
-    platforms   = platforms.linux;
-    maintainers = with maintainers; [ ericsagnes ];
-  };
-}