diff options
Diffstat (limited to 'nix')
-rw-r--r-- | nix/wlroots.nix | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/nix/wlroots.nix b/nix/wlroots.nix index 005762c3..bd3af688 100644 --- a/nix/wlroots.nix +++ b/nix/wlroots.nix @@ -2,9 +2,6 @@ version, src, wlroots, - hwdata, - libdisplay-info, - libliftoff, enableXWayland ? true, }: wlroots.overrideAttrs (old: { @@ -12,11 +9,5 @@ wlroots.overrideAttrs (old: { pname = "${old.pname}-hyprland"; - buildInputs = - old.buildInputs - ++ [ - hwdata - libliftoff - libdisplay-info - ]; + patches = [ ]; # don't inherit old.patches }) |