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