about summary refs log tree commit diff
path: root/pkgs/tools/inputmethods/fcitx/wrapper.nix
diff options
context:
space:
mode:
authorEric Sagnes <eric.sagnes@gmail.com>2016-05-21 16:37:52 +0900
committerEric Sagnes <eric.sagnes@gmail.com>2016-05-21 17:02:23 +0900
commitbeae300722ccba9ac9764b1de25a4b1c21b60ee8 (patch)
tree17007bb1baf4ef10c3078a735be89e2f42286304 /pkgs/tools/inputmethods/fcitx/wrapper.nix
parent379559702e4b652ada7c37f820a1e59ce52c653f (diff)
downloadnixlib-beae300722ccba9ac9764b1de25a4b1c21b60ee8.tar
nixlib-beae300722ccba9ac9764b1de25a4b1c21b60ee8.tar.gz
nixlib-beae300722ccba9ac9764b1de25a4b1c21b60ee8.tar.bz2
nixlib-beae300722ccba9ac9764b1de25a4b1c21b60ee8.tar.lz
nixlib-beae300722ccba9ac9764b1de25a4b1c21b60ee8.tar.xz
nixlib-beae300722ccba9ac9764b1de25a4b1c21b60ee8.tar.zst
nixlib-beae300722ccba9ac9764b1de25a4b1c21b60ee8.zip
fcitx-qt5: kde5PackagesFun -> qt5LibsFun
Diffstat (limited to 'pkgs/tools/inputmethods/fcitx/wrapper.nix')
-rw-r--r--pkgs/tools/inputmethods/fcitx/wrapper.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/inputmethods/fcitx/wrapper.nix b/pkgs/tools/inputmethods/fcitx/wrapper.nix
index 96423cf46e6d..8e086f7386f5 100644
--- a/pkgs/tools/inputmethods/fcitx/wrapper.nix
+++ b/pkgs/tools/inputmethods/fcitx/wrapper.nix
@@ -1,9 +1,9 @@
-{ stdenv, symlinkJoin, fcitx, fcitx-configtool, makeWrapper, plugins, kde5 }:
+{ stdenv, symlinkJoin, fcitx, fcitx-configtool, makeWrapper, plugins, qt55 }:
 
 symlinkJoin {
   name = "fcitx-with-plugins-${fcitx.version}";
 
-  paths = [ fcitx fcitx-configtool kde5.fcitx-qt5 ] ++ plugins;
+  paths = [ fcitx fcitx-configtool qt55.fcitx-qt5 ] ++ plugins;
 
   buildInputs = [ makeWrapper ];