Revert "unbound: don't run tests when cross compiling"

This reverts commit 28e5327e96.

This change didn't have any effect, because stdenv.mkDerivation will
ignore the doCheck argument when cross-compiling.  The reason tests
are being run when cross-compiling is because of the manual checkPhase
invocation in postFixup.
This commit is contained in:
Alyssa Ross
2021-11-11 12:23:12 +00:00
parent 62b9b0d9e8
commit 1103974a27
+1 -1
View File
@@ -95,7 +95,7 @@ stdenv.mkDerivation rec {
checkInputs = [ bison ];
doCheck = stdenv.buildPlatform == stdenv.hostPlatform;
doCheck = true;
installFlags = [ "configfile=\${out}/etc/unbound/unbound.conf" ];