mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 10:25:59 +01:00
13 lines
212 B
Nix
13 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
|
|
})
|