Hyprland/nix/wlroots.nix
Mihai Fufezan d9bc210285
Nix: remove libdrm override
Nixpkgs update has the new version.
2023-12-12 23:34:22 +02:00

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
];
})