about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorRobert Gerus <ar@is-a.cat>2023-12-16 16:12:42 +0100
committerRobert Gerus <ar@is-a.cat>2023-12-18 12:41:26 +0100
commit85e0f8e59da3a518f789c4bb43e0c7b6219d25b5 (patch)
tree03e2f77b6ab9d5ce3a06732a74938bfa9b6b71d2 /pkgs/tools
parenta9bf124c46ef298113270b1f84a164865987a91c (diff)
downloadnixlib-85e0f8e59da3a518f789c4bb43e0c7b6219d25b5.tar
nixlib-85e0f8e59da3a518f789c4bb43e0c7b6219d25b5.tar.gz
nixlib-85e0f8e59da3a518f789c4bb43e0c7b6219d25b5.tar.bz2
nixlib-85e0f8e59da3a518f789c4bb43e0c7b6219d25b5.tar.lz
nixlib-85e0f8e59da3a518f789c4bb43e0c7b6219d25b5.tar.xz
nixlib-85e0f8e59da3a518f789c4bb43e0c7b6219d25b5.tar.zst
nixlib-85e0f8e59da3a518f789c4bb43e0c7b6219d25b5.zip
ibus: fix skipping key release events[1] in Wine
[1]: https://github.com/ibus/ibus/issues/2480
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/inputmethods/ibus/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/tools/inputmethods/ibus/default.nix b/pkgs/tools/inputmethods/ibus/default.nix
index 848758b54146..4e2301fdd365 100644
--- a/pkgs/tools/inputmethods/ibus/default.nix
+++ b/pkgs/tools/inputmethods/ibus/default.nix
@@ -84,6 +84,11 @@ stdenv.mkDerivation rec {
       url = "https://github.com/ibus/ibus/commit/8f706d160631f1ffdbfa16543a38b9d5f91c16ad.patch";
       hash = "sha256-YzS9TmUWW0OmheDeCeU00kFK2U2QEmKYMSRJAbu14ec=";
     })
+    # fix missing key releases in Wine https://github.com/ibus/ibus/issues/2480
+    (fetchpatch {
+      url = "https://github.com/ibus/ibus/commit/497f0c74230a65309e22ce5569060ce48310406b.patch";
+      hash = "sha256-PAZcUxmzjChs1/K8hXgOcytyS4LYoNL1dtU6X5Tx8ic=";
+    })
   ];
 
   outputs = [ "out" "dev" "installedTests" ];