summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorEric Sagnes <eric.sagnes@gmail.com>2016-02-10 14:00:58 +0900
committerEric Sagnes <eric.sagnes@gmail.com>2016-02-17 20:44:29 +0900
commit295d67002432bc719af447a054add3292eefafed (patch)
tree735aaad6000b8c8e861dcf4cde8dac79afb6882d /pkgs
parent850be632a071c2d7dd2f9bdb333d1fdffbec3340 (diff)
downloadnixlib-295d67002432bc719af447a054add3292eefafed.tar
nixlib-295d67002432bc719af447a054add3292eefafed.tar.gz
nixlib-295d67002432bc719af447a054add3292eefafed.tar.bz2
nixlib-295d67002432bc719af447a054add3292eefafed.tar.lz
nixlib-295d67002432bc719af447a054add3292eefafed.tar.xz
nixlib-295d67002432bc719af447a054add3292eefafed.tar.zst
nixlib-295d67002432bc719af447a054add3292eefafed.zip
fcitx-with-plugins: add fcitx-configtool and fcitx-qt5
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/inputmethods/fcitx/wrapper.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/inputmethods/fcitx/wrapper.nix b/pkgs/tools/inputmethods/fcitx/wrapper.nix
index d4efb3326969..a0ae26189541 100644
--- a/pkgs/tools/inputmethods/fcitx/wrapper.nix
+++ b/pkgs/tools/inputmethods/fcitx/wrapper.nix
@@ -1,4 +1,4 @@
-{ stdenv, buildEnv, fcitx, makeWrapper, plugins }:
+{ stdenv, buildEnv, fcitx, fcitx-configtool, makeWrapper, plugins, kde5 }:
 
 # This is based on the pidgin-with-plugins package.
 # Users should be able to configure what plugins are used
@@ -16,7 +16,7 @@ let
 drv = buildEnv {
   name = "fcitx-with-plugins-" + (builtins.parseDrvName fcitx.name).version;
 
-  paths = [ fcitx ] ++ plugins;
+  paths = [ fcitx fcitx-configtool kde5.fcitx-qt5 ] ++ plugins;
 
   postBuild = ''
     # TODO: This could be avoided if buildEnv could be forced to create all directories