Unverified Commit 8b537d8d authored by rewine's avatar rewine Committed by GitHub
Browse files

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

parents 15884bd3 d4c0bd6d
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))
  ];