Merge pull request #23411 from ericsagnes/pkg-fix/fcitx

fcitx: fix fcitx-qt5 attribute path
This commit is contained in:
Thomas Tuegel 2017-03-04 10:09:04 -06:00 committed by GitHub
commit ca8edb791e

View file

@ -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 ];