From d4c0bd6dc5b929133e33e21b096b9737cca58031 Mon Sep 17 00:00:00 2001 From: FliegendeWurst Date: Sun, 19 Jan 2025 12:21:41 +0100 Subject: [PATCH] wf-config: fix and enable strictDeps --- pkgs/applications/window-managers/wayfire/wf-config.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/applications/window-managers/wayfire/wf-config.nix b/pkgs/applications/window-managers/wayfire/wf-config.nix index 8ebbd647bcd7..80511e5abb67 100644 --- a/pkgs/applications/window-managers/wayfire/wf-config.nix +++ b/pkgs/applications/window-managers/wayfire/wf-config.nix @@ -40,11 +40,15 @@ stdenv.mkDerivation (finalAttrs: { nativeCheckInputs = [ cmake + ]; + checkInputs = [ doctest ]; # CMake is just used for finding doctest. dontUseCmakeConfigure = true; + strictDeps = true; + mesonFlags = [ (lib.mesonEnable "tests" (stdenv.buildPlatform.canExecute stdenv.hostPlatform)) ];