python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / inputmethods / fcitx / wrapper.nix
blob6e7e71c57132e51b15f2106bbc193adffe06ae70
1 { symlinkJoin, fcitx, fcitx-configtool, makeWrapper, plugins, libsForQt5 }:
3 symlinkJoin {
4   name = "fcitx-with-plugins-${fcitx.version}";
6   paths = [ fcitx fcitx-configtool libsForQt5.fcitx-qt5 ] ++ plugins;
8   nativeBuildInputs = [ makeWrapper ];
10   postBuild = ''
11     wrapProgram $out/bin/fcitx \
12       --set FCITXDIR "$out/"
13   '';