about summary refs log tree commit diff
path: root/pkgs/tools/inputmethods/fcitx/wrapper.nix
blob: 96423cf46e6d7aff06b6e8ef9e67899d7be00aab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ stdenv, symlinkJoin, fcitx, fcitx-configtool, makeWrapper, plugins, kde5 }:

symlinkJoin {
  name = "fcitx-with-plugins-${fcitx.version}";

  paths = [ fcitx fcitx-configtool kde5.fcitx-qt5 ] ++ plugins;

  buildInputs = [ makeWrapper ];

  postBuild = ''
    wrapProgram $out/bin/fcitx \
      --set FCITXDIR "$out/"
  '';
}