overlays: update kitty to 0.41.0

Fixes an issue where kitty would crash all the time when its window
was resized in 0.40.1.
This commit is contained in:
Donovan Glover
2025-03-30 23:03:40 -04:00
parent 4bc7955f42
commit b2448aa62b

12
overlays/kitty.nix Normal file
View File

@ -0,0 +1,12 @@
final: prev: {
kitty = prev.kitty.overrideAttrs (oldAttrs: rec {
version = "0.41.0";
src = prev.fetchFromGitHub {
owner = "kovidgoyal";
repo = "kitty";
tag = "v${version}";
hash = "sha256-5Yq4/zRqi5gK2obFTzGKR13FfyD7/G21C6WsA9QxFIg=";
};
});
}