Hyprland/nix/wlroots.nix

14 lines
212 B
Nix
Raw Normal View History

{
version,
src,
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
})