flake/overlays/fcitx5.nix

15 lines
347 B
Nix
Raw Normal View History

2024-05-03 00:10:55 +00:00
{
addPatches,
prev,
...
}: {
fcitx5 = addPatches prev.fcitx5 [
# Breaks typing in Firefox and some GTK apps
(prev.fetchpatch {
url = "https://github.com/fcitx/fcitx5/commit/b2924bd361680c493463d240a375b3f0948ae48d.patch";
hash = "sha256-FMbYu1yYDHQ8ndr6Fa/qLL1EIKSTQJwc1YuUiEDiJjc=";
revert = true;
})
];
}