tv libinput-tv: init with winmax2 patch

This commit is contained in:
tv 2023-01-29 13:48:00 +01:00
parent 8e019e0111
commit e726cb1f59
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
{ pkgs }:
pkgs.libinput.overrideAttrs (old: {
patches = old.patches or [] ++ [
(pkgs.fetchurl {
name = "libinput-winmax2.patch";
url = "https://github.com/4z3/libinput/commit/2d0ff41.patch";
sha256 = "0ipsxzjf98g9w2m163gp49zl14wbxs84s0psdnvk7wfiivgcnm1f";
})
];
})