about summary refs log tree commit diff
path: root/pkgs/tools/inputmethods/fcitx5/with-addons.nix
blob: 854020effeaa839f8ff266ce536cb8ab91f9c717 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ symlinkJoin, makeWrapper, fcitx5, fcitx5-lua, fcitx5-configtool, fcitx5-qt, fcitx5-gtk, addons ? [] }:

symlinkJoin {
  name = "fcitx5-with-addons-${fcitx5.version}";

  paths = [ fcitx5 fcitx5-configtool fcitx5-lua fcitx5-qt fcitx5-gtk ] ++ addons;

  buildInputs = [ makeWrapper ];

  postBuild = ''
    wrapProgram $out/bin/fcitx5 \
      --prefix FCITX_ADDON_DIRS : "$out/lib/fcitx5" \
      --suffix XDG_DATA_DIRS : "$out/share" \
      --suffix PATH : "$out/bin"
  '';

  meta = fcitx5.meta;
}