diff --git a/pkgs/tools/inputmethods/ibus/wrapper.nix b/pkgs/tools/inputmethods/ibus/wrapper.nix index 3bccad1cc0c9..72fbaef6604a 100644 --- a/pkgs/tools/inputmethods/ibus/wrapper.nix +++ b/pkgs/tools/inputmethods/ibus/wrapper.nix @@ -1,11 +1,15 @@ -{ stdenv, runCommand, ibus, lndir, makeWrapper, plugins, hicolor_icon_theme }: +{ stdenv, runCommand, makeWrapper, lndir +, dconf, hicolor_icon_theme, ibus, plugins +}: let name = "ibus-with-plugins-" + (builtins.parseDrvName ibus.name).version; env = { + buildInputs = [ ibus ] ++ plugins; nativeBuildInputs = [ lndir makeWrapper ]; propagatedUserEnvPackages = [ hicolor_icon_theme ]; paths = [ ibus ] ++ plugins; + inherit (ibus) meta; }; command = '' for dir in bin etc lib libexec share; do @@ -19,7 +23,8 @@ let for prog in ibus ibus-daemon ibus-setup; do wrapProgram "$out/bin/$prog" \ - --suffix XDG_DATA_DIRS : "${hicolor_icon_theme}/share" \ + --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH:$out/lib/girepository-1.0" \ + --prefix GIO_EXTRA_MODULES : "${dconf}/lib/gio/modules" \ --set IBUS_COMPONENT_PATH "$out/share/ibus/component/" \ --set IBUS_DATAROOTDIR "$out/share" \ --set IBUS_LIBEXECDIR "$out/libexec" \ @@ -29,7 +34,9 @@ let --set IBUS_TABLE_DATA_DIR "$out/share" \ --set IBUS_TABLE_LIB_LOCATION "$out/libexec" \ --set IBUS_TABLE_LOCATION "$out/share/ibus-table" \ - --set IBUS_TABLE_DEBUG_LEVEL 1 + --prefix PYTHONPATH : "$PYTHONPATH" \ + --prefix XDG_DATA_DIRS : "$out/share:$GSETTINGS_SCHEMAS_PATH" \ + --suffix XDG_DATA_DIRS : "${hicolor_icon_theme}/share" done ''; in diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 08517163ebc7..75565c0f5e02 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1198,6 +1198,7 @@ let }; ibus-with-plugins = callPackage ../tools/inputmethods/ibus/wrapper.nix { + inherit (gnome3) dconf; plugins = [ ]; };