summaryrefslogtreecommitdiffstats
path: root/pkgs/tools
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@secure.mailbox.org>2017-03-04 10:09:04 -0600
committerGitHub <noreply@github.com>2017-03-04 10:09:04 -0600
commitca8edb791e063c7c295adb542d90306d0b8f9835 (patch)
tree5fb669c14f4c933f5dcbc19f4e00521ff4256864 /pkgs/tools
parent3fdd726b16cf39da25dd97d30631dc129e33fb0f (diff)
parentacb1032968927c5e78e5d05c1bafc6378d82c44b (diff)
Merge pull request #23411 from ericsagnes/pkg-fix/fcitx
fcitx: fix fcitx-qt5 attribute path
Diffstat (limited to 'pkgs/tools')
-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 ];