From 657e7fc71cc41068dbd8f5910d32b7fd522bb38d Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Sat, 18 Jan 2025 00:05:38 -0500 Subject: [PATCH] overlays: remove rofi-wayland-unwrapped No longer necessary now that a new release is out. --- overlays/rofi-wayland-unwrapped.nix | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 overlays/rofi-wayland-unwrapped.nix diff --git a/overlays/rofi-wayland-unwrapped.nix b/overlays/rofi-wayland-unwrapped.nix deleted file mode 100644 index 7ffcf3fd..00000000 --- a/overlays/rofi-wayland-unwrapped.nix +++ /dev/null @@ -1,11 +0,0 @@ -final: prev: { - rofi-wayland-unwrapped = prev.rofi-wayland-unwrapped.overrideAttrs (oldAttrs: { - patches = (oldAttrs.patches or [ ]) ++ [ - # Fix touchpad scrolling - (prev.fetchpatch { - url = "https://github.com/lbonn/rofi/commit/93ad86da10b1747f4e584bc6bfbfbc3eddb280a3.patch"; - hash = "sha256-COWlVTa/C8oySxLdNo8w3W5WiujGIr/cDfXQWRkI1yw="; - }) - ]; - }); -}