bison: only run install check

Install check appears to run
the normal check target as well.
This introduces a scenario where
a large test suite is being ran twice.
This commit is contained in:
Jonathan Ringer 2022-07-09 10:23:13 -07:00
parent 8073a6fb09
commit 2d8f2d938c
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -28,7 +28,8 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
doCheck = true;
# Normal check and install check largely execute the same test suite
doCheck = false;
doInstallCheck = true;
meta = {