aboutsummaryrefslogtreecommitdiffhomepage
path: root/nix
diff options
context:
space:
mode:
authorAndrĂ© Silva <[email protected]>2023-12-26 16:54:07 +0000
committerMihai Fufezan <[email protected]>2023-12-27 14:29:15 +0200
commitf86cdcf8d5a9e0150c16fa1ff0d097b81a983792 (patch)
treeb8555eaa07f29ba34a952de717620e969312b145 /nix
parent85d375e8ab4cea0256ff038d2f6340a857e1e1ca (diff)
downloadHyprland-f86cdcf8d5a9e0150c16fa1ff0d097b81a983792.tar.gz
Hyprland-f86cdcf8d5a9e0150c16fa1ff0d097b81a983792.zip
nix: fix wlroots build
Diffstat (limited to 'nix')
-rw-r--r--nix/wlroots.nix11
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
})