mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 17:45:58 +01:00
d9bc210285
Nixpkgs update has the new version.
22 lines
314 B
Nix
22 lines
314 B
Nix
{
|
|
version,
|
|
src,
|
|
wlroots,
|
|
hwdata,
|
|
libdisplay-info,
|
|
libliftoff,
|
|
enableXWayland ? true,
|
|
}:
|
|
wlroots.overrideAttrs (old: {
|
|
inherit version src enableXWayland;
|
|
|
|
pname = "${old.pname}-hyprland";
|
|
|
|
buildInputs =
|
|
old.buildInputs
|
|
++ [
|
|
hwdata
|
|
libliftoff
|
|
libdisplay-info
|
|
];
|
|
})
|