mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 19:05:58 +01:00
16 lines
276 B
Nix
16 lines
276 B
Nix
{
|
|
version,
|
|
src,
|
|
git,
|
|
wlroots,
|
|
enableXWayland ? true,
|
|
}:
|
|
wlroots.overrideAttrs (old: {
|
|
inherit version src enableXWayland;
|
|
|
|
pname = "${old.pname}-hyprland";
|
|
|
|
patches = [ ]; # don't inherit old.patches
|
|
|
|
nativeBuildInputs = old.nativeBuildInputs ++ [ git ];
|
|
})
|