tv alacritty: fix touchscreen scrolling

This commit is contained in:
tv 2023-06-26 19:23:00 +02:00
parent f9e82b4ffc
commit a5b44e13fa
1 changed files with 12 additions and 10 deletions

View File

@ -1,14 +1,16 @@
self: super:
super.alacritty.overrideAttrs (old:
assert self.lib.versions.majorMinor old.version == "0.11";
{
version = "${old.version}-tv";
src = self.fetchFromGitHub {
owner = "4z3";
repo = "alacritty";
rev = "touchscreen-support-0.11";
hash = "sha256-oA4earrJ7lPVSBm9vRccWatAQ49hfDKsa7M72B5uQpY=";
};
}
if self.lib.versions.majorMinor old.version == "0.12" then
{
version = "${old.version}-tv";
src = self.fetchFromGitHub {
owner = "4z3";
repo = "alacritty";
rev = "touchscreen-support-0.12";
hash = "sha256-yDG7IeQUmJhKMJebhMDzHLb3UHGLcO1FVZnmGe5Xr9w=";
};
}
else
builtins.trace "not overriding alacritty because unsupported version" {}
)