aboutsummaryrefslogtreecommitdiffhomepage
path: root/nix
diff options
context:
space:
mode:
authorAndrĂ© Silva <[email protected]>2024-04-21 13:33:50 +0100
committerMihai Fufezan <[email protected]>2024-04-21 15:54:23 +0300
commit1ce21fdb3ec93b38c45b501a30b81dd379429a3e (patch)
tree89f3f9dfebdc36579d150bd4a3369ceec7627174 /nix
parent4dc07c4378e0fad735fb0efc96d6200739d5cae1 (diff)
downloadHyprland-1ce21fdb3ec93b38c45b501a30b81dd379429a3e.tar.gz
Hyprland-1ce21fdb3ec93b38c45b501a30b81dd379429a3e.zip
nix: fix missing git in wlroots build
Diffstat (limited to 'nix')
-rw-r--r--nix/wlroots.nix3
1 files changed, 3 insertions, 0 deletions
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 ];
})