mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-08-13 16:47:08 +02:00
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:
12
overlays/kitty.nix
Normal file
12
overlays/kitty.nix
Normal 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=";
|
||||
};
|
||||
});
|
||||
}
|
Reference in New Issue
Block a user