From 1ce21fdb3ec93b38c45b501a30b81dd379429a3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Silva?= Date: Sun, 21 Apr 2024 13:33:50 +0100 Subject: [PATCH] nix: fix missing git in wlroots build --- nix/wlroots.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nix/wlroots.nix b/nix/wlroots.nix index bd3af688f38..b0dccb00ec3 100644 --- a/nix/wlroots.nix +++ b/nix/wlroots.nix @@ -1,6 +1,7 @@ { version, src, + git, wlroots, enableXWayland ? true, }: @@ -10,4 +11,6 @@ wlroots.overrideAttrs (old: { pname = "${old.pname}-hyprland"; patches = [ ]; # don't inherit old.patches + + nativeBuildInputs = old.nativeBuildInputs ++ [ git ]; })