From acb1032968927c5e78e5d05c1bafc6378d82c44b Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Fri, 3 Mar 2017 08:54:32 +0900 Subject: [PATCH] fcitx: fix fcitx-qt5 attribute path --- pkgs/tools/inputmethods/fcitx/wrapper.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/inputmethods/fcitx/wrapper.nix b/pkgs/tools/inputmethods/fcitx/wrapper.nix index 8e086f7386f..1dfe6b24506 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 ];