diff options
author | lassulus <git@lassul.us> | 2023-01-31 00:34:07 +0100 |
---|---|---|
committer | lassulus <git@lassul.us> | 2023-01-31 00:34:07 +0100 |
commit | 62bd490d1e7217898bc793afc20de853ac1e6622 (patch) | |
tree | 454b9cbf6f72c54b993487ebc1f8deeb1cbb6506 /tv/5pkgs/simple/libinput-tv.nix | |
parent | 369fa6b7eb3f0fa3e1034bcad438eeda017949f8 (diff) | |
parent | a85de9a0deb81f8b8759bfc6a54db0d823ab7a19 (diff) |
Merge remote-tracking branch 'ni/master'
Diffstat (limited to 'tv/5pkgs/simple/libinput-tv.nix')
-rw-r--r-- | tv/5pkgs/simple/libinput-tv.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tv/5pkgs/simple/libinput-tv.nix b/tv/5pkgs/simple/libinput-tv.nix new file mode 100644 index 000000000..6f08689bb --- /dev/null +++ b/tv/5pkgs/simple/libinput-tv.nix @@ -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"; + }) + ]; +}) |