survex: fix and enable strictDeps

This commit is contained in:
FliegendeWurst
2025-03-26 13:16:22 +01:00
parent 52015d4a13
commit fa36b8fded
@@ -57,10 +57,16 @@ stdenv.mkDerivation rec {
libX11
];
strictDeps = true;
postPatch = ''
patchShebangs .
'';
configureFlags = [
"WX_CONFIG=${lib.getExe' (lib.getDev wxGTK32) "wx-config"}"
];
enableParallelBuilding = true;
doCheck = (!stdenv.hostPlatform.isDarwin); # times out
enableParallelChecking = false;