Commit d4c0bd6d authored by FliegendeWurst's avatar FliegendeWurst
Browse files

wf-config: fix and enable strictDeps

parent d7104f18
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -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))
  ];