summaryrefslogtreecommitdiffstats
path: root/tv/5pkgs
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2023-01-29 13:48:00 +0100
committertv <tv@krebsco.de>2023-01-29 13:48:00 +0100
commite726cb1f59ed675d8efee3d30cca3922c91f1e8a (patch)
tree4aae23fbfeef5a04c34295910019a11ecb2a4da2 /tv/5pkgs
parent8e019e0111ed73c4f49007fa00c5ecc8c5c46f28 (diff)
tv libinput-tv: init with winmax2 patch
Diffstat (limited to 'tv/5pkgs')
-rw-r--r--tv/5pkgs/simple/libinput-tv.nix11
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 00000000..6f08689b
--- /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";
+ })
+ ];
+})