Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 20c7034ec8dd
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6088dcf945d7
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Feb 11, 2021

  1. ibus-engines.table: Fix ibus-setup-table

    It now requires dbus-python.
    
    Missed this in #109973
    jtojnar committed Feb 11, 2021

    Verified

    This commit was signed with the committer’s verified signature.
    Doctor-wu Doctor Wu
    Copy the full SHA
    6088dcf View commit details
Showing with 4 additions and 0 deletions.
  1. +4 −0 pkgs/tools/inputmethods/ibus-engines/ibus-table/default.nix
4 changes: 4 additions & 0 deletions pkgs/tools/inputmethods/ibus-engines/ibus-table/default.nix
Original file line number Diff line number Diff line change
@@ -27,13 +27,17 @@ stdenv.mkDerivation rec {
-e "/export IBUS_LOCALEDIR=/ s/^.$//" \
-i "setup/ibus-setup-table.in"
substituteInPlace engine/tabcreatedb.py --replace '/usr/share/ibus-table' $out/share/ibus-table
substituteInPlace engine/ibus_table_location.py \
--replace '/usr/libexec' $out/libexec \
--replace '/usr/share/ibus-table/' $out/share/ibus-table/
'';

buildInputs = [
dconf
gtk3
ibus
(python3.withPackages (pypkgs: with pypkgs; [
dbus-python
pygobject3
(toPythonModule ibus)
]))