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>2017-03-03 08:54:32 +0900
committerEric Sagnes <eric.sagnes@gmail.com>2017-03-03 08:54:32 +0900
commitacb1032968927c5e78e5d05c1bafc6378d82c44b (patch)
tree057fac476735b99b23ba935ef04efa03310b5130 /pkgs/tools/inputmethods/fcitx/wrapper.nix
parent1254f1a46a56aba571eaa4fe636a1593631eeb25 (diff)
downloadnixlib-acb1032968927c5e78e5d05c1bafc6378d82c44b.tar
nixlib-acb1032968927c5e78e5d05c1bafc6378d82c44b.tar.gz
nixlib-acb1032968927c5e78e5d05c1bafc6378d82c44b.tar.bz2
nixlib-acb1032968927c5e78e5d05c1bafc6378d82c44b.tar.lz
nixlib-acb1032968927c5e78e5d05c1bafc6378d82c44b.tar.xz
nixlib-acb1032968927c5e78e5d05c1bafc6378d82c44b.tar.zst
nixlib-acb1032968927c5e78e5d05c1bafc6378d82c44b.zip
fcitx: fix fcitx-qt5 attribute path
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 8e086f7386f5..1dfe6b245061 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, qt55 }:
+{ stdenv, symlinkJoin, fcitx, fcitx-configtool, makeWrapper, plugins, libsForQt5 }:
 
 symlinkJoin {
   name = "fcitx-with-plugins-${fcitx.version}";
 
-  paths = [ fcitx fcitx-configtool qt55.fcitx-qt5 ] ++ plugins;
+  paths = [ fcitx fcitx-configtool libsForQt5.fcitx-qt5 ] ++ plugins;
 
   buildInputs = [ makeWrapper ];