Hyprland/nix/wlroots.nix

17 lines
276 B
Nix
Raw Normal View History

{
version,
src,
2024-04-21 14:33:50 +02:00
git,
wlroots,
enableXWayland ? true,
}:
wlroots.overrideAttrs (old: {
inherit version src enableXWayland;
2023-11-26 03:58:57 +01:00
pname = "${old.pname}-hyprland";
2023-12-26 17:54:07 +01:00
patches = [ ]; # don't inherit old.patches
2024-04-21 14:33:50 +02:00
nativeBuildInputs = old.nativeBuildInputs ++ [ git ];
})