Hyprland/nix/wlroots.nix
2023-12-27 14:29:15 +02:00

14 lines
212 B
Nix

{
version,
src,
wlroots,
enableXWayland ? true,
}:
wlroots.overrideAttrs (old: {
inherit version src enableXWayland;
pname = "${old.pname}-hyprland";
patches = [ ]; # don't inherit old.patches
})