From f86cdcf8d5a9e0150c16fa1ff0d097b81a983792 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Silva?= Date: Tue, 26 Dec 2023 16:54:07 +0000 Subject: [PATCH] nix: fix wlroots build --- nix/wlroots.nix | 11 +---------- 1 file changed, 1 insertion(+), 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 })