1
0
Fork 0
mirror of https://github.com/hyprwm/Hyprland synced 2025-04-06 11:12:07 +02:00

Nix: add changes from Nixpkgs derivation

This commit is contained in:
Mihai Fufezan 2025-03-23 18:19:34 +02:00
parent 006bd9eef5
commit e4abf26069
Signed by: fufexan
SSH key fingerprint: SHA256:SdnKmEpJrDu1+2UO1QpB/Eg4HKcdDi6n+xSRqFNJVpg

View file

@ -11,6 +11,7 @@
aquamarine,
binutils,
cairo,
epoll-shim,
git,
glaze,
hyprcursor,
@ -141,6 +142,7 @@ in
wayland-scanner
xorg.libXcursor
]
(optionals customStdenv.hostPlatform.isBSD [ epoll-shim ])
(optionals customStdenv.hostPlatform.isMusl [libexecinfo])
(optionals enableXWayland [
xorg.libxcb
@ -153,6 +155,8 @@ in
(optional withSystemd systemd)
];
strictDeps = true;
mesonBuildType =
if debug
then "debug"
@ -162,6 +166,7 @@ in
(mapAttrsToList mesonEnable {
"xwayland" = enableXWayland;
"legacy_renderer" = legacyRenderer;
"systemd" = withSystemd;
"uwsm" = false;
"hyprpm" = false;
})