yices: Build in parallel, run tests, fix test shebang.

This commit is contained in:
Will Dietz 2016-10-26 09:52:29 -05:00
parent 8584ec97ed
commit 3cf27a654a

View File

@ -10,11 +10,16 @@ stdenv.mkDerivation rec {
sha256 = "1wfq6hcm54h0mqmbs1ip63i0ywlwnciav86sbzk3gafxyzg1nd0c";
};
patchPhase = ''patchShebangs tests/regress/check.sh'';
configureFlags = [ "--with-static-gmp=${gmp-static.out}/lib/libgmp.a"
"--with-static-gmp-include-dir=${gmp-static.dev}/include"
];
buildInputs = [ gmp-static gperf autoreconfHook ];
enableParallelBuilding = true;
doCheck = true;
installPhase = ''make install LDCONFIG=true'';
meta = {