nix: fix missing git in wlroots build

This commit is contained in:
André Silva 2024-04-21 13:33:50 +01:00 committed by Mihai Fufezan
parent 4dc07c4378
commit 1ce21fdb3e
1 changed files with 3 additions and 0 deletions

View File

@ -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 ];
})