From e4abf26069b4d43c8f6ad6b3dfb56c952abb38c2 Mon Sep 17 00:00:00 2001 From: Mihai Fufezan <mihai@fufexan.net> Date: Sun, 23 Mar 2025 18:19:34 +0200 Subject: [PATCH] Nix: add changes from Nixpkgs derivation --- nix/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nix/default.nix b/nix/default.nix index 2d9ee99f5..f66bac93b 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -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; })