wf-config: fix and enable strictDeps (#375278)

This commit is contained in:
rewine
2025-01-20 17:00:40 +08:00
committed by GitHub
@@ -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))
];