Skip to content

Commit b2448aa

Browse files
committed
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.
1 parent 4bc7955 commit b2448aa

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

overlays/kitty.nix

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
final: prev: {
2+
kitty = prev.kitty.overrideAttrs (oldAttrs: rec {
3+
version = "0.41.0";
4+
5+
src = prev.fetchFromGitHub {
6+
owner = "kovidgoyal";
7+
repo = "kitty";
8+
tag = "v${version}";
9+
hash = "sha256-5Yq4/zRqi5gK2obFTzGKR13FfyD7/G21C6WsA9QxFIg=";
10+
};
11+
});
12+
}

0 commit comments

Comments
 (0)