2018-07-20 17:44:44 -07:00
|
|
|
{ symlinkJoin, fcitx, fcitx-configtool, makeWrapper, plugins, libsForQt5 }:
|
2014-11-04 17:23:39 -08:00
|
|
|
|
2016-04-26 05:28:06 -07:00
|
|
|
symlinkJoin {
|
|
|
|
name = "fcitx-with-plugins-${fcitx.version}";
|
2014-11-04 17:23:39 -08:00
|
|
|
|
2017-03-02 15:54:32 -08:00
|
|
|
paths = [ fcitx fcitx-configtool libsForQt5.fcitx-qt5 ] ++ plugins;
|
2014-11-04 17:23:39 -08:00
|
|
|
|
2016-04-26 05:28:06 -07:00
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
|
2014-11-04 17:23:39 -08:00
|
|
|
postBuild = ''
|
|
|
|
wrapProgram $out/bin/fcitx \
|
|
|
|
--set FCITXDIR "$out/"
|
|
|
|
'';
|
2016-04-26 05:28:06 -07:00
|
|
|
}
|