From 1ce21fdb3ec93b38c45b501a30b81dd379429a3e Mon Sep 17 00:00:00 2001 From: André Silva Date: Sun, 21 Apr 2024 13:33:50 +0100 Subject: nix: fix missing git in wlroots build --- nix/wlroots.nix | 3 +++ 1 file changed, 3 insertions(+) (limited to 'nix') diff --git a/nix/wlroots.nix b/nix/wlroots.nix index bd3af688..b0dccb00 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 ]; }) -- cgit v1.2.3