2018-07-21 00:44:44 +00:00
|
|
|
{ symlinkJoin, fcitx, fcitx-configtool, makeWrapper, plugins, libsForQt5 }:
|
2014-11-05 01:23:39 +00:00
|
|
|
|
2016-04-26 12:28:06 +00: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
|
|
|
|
2021-07-12 19:29:05 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2016-04-26 12:28:06 +00:00
|
|
|
|
2014-11-05 01:23:39 +00:00
|
|
|
postBuild = ''
|
|
|
|
wrapProgram $out/bin/fcitx \
|
|
|
|
--set FCITXDIR "$out/"
|
|
|
|
'';
|
2016-04-26 12:28:06 +00:00
|
|
|
}
|