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