2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchurl, flex, bison, gmp, perl }:
|
2010-12-05 09:28:41 -08:00
|
|
|
|
2015-07-07 11:03:30 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "cvc3";
|
2015-07-07 11:03:30 -07:00
|
|
|
version = "2.4.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "http://www.cs.nyu.edu/acsys/cvc3/releases/${version}/${pname}-${version}.tar.gz";
|
2015-07-07 11:03:30 -07:00
|
|
|
sha256 = "1xxcwhz3y6djrycw8sm6xz83wb4hb12rd1n0skvc7fng0rh1snym";
|
|
|
|
};
|
2010-12-05 09:28:41 -08:00
|
|
|
|
2015-07-07 11:03:30 -07:00
|
|
|
buildInputs = [ gmp flex bison perl ];
|
2010-12-05 09:28:41 -08:00
|
|
|
|
2017-08-29 11:48:09 -07:00
|
|
|
patches = [ ./cvc3-2.4.1-gccv6-fix.patch ];
|
|
|
|
|
2020-09-22 13:29:07 -07:00
|
|
|
postPatch = ''
|
2010-12-05 09:28:41 -08:00
|
|
|
sed -e "s@ /bin/bash@bash@g" -i Makefile.std
|
|
|
|
find . -exec sed -e "s@/usr/bin/perl@${perl}/bin/perl@g" -i '{}' ';'
|
2020-09-22 13:29:07 -07:00
|
|
|
|
|
|
|
# bison 3.7 workaround
|
|
|
|
for f in parsePL parseLisp parsesmtlib parsesmtlib2 ; do
|
|
|
|
ln -s ../parser/''${f}_defs.h src/include/''${f}.hpp
|
|
|
|
done
|
2015-07-07 11:03:30 -07:00
|
|
|
'';
|
2014-11-05 16:44:33 -08:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2010-12-05 09:28:41 -08:00
|
|
|
description = "A prover for satisfiability modulo theory (SMT)";
|
2015-07-07 11:03:30 -07:00
|
|
|
maintainers = with maintainers;
|
|
|
|
[ raskin ];
|
2020-09-22 13:59:28 -07:00
|
|
|
platforms = platforms.unix;
|
2015-07-07 11:03:30 -07:00
|
|
|
license = licenses.free;
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://www.cs.nyu.edu/acsys/cvc3/index.html";
|
2010-12-05 09:28:41 -08:00
|
|
|
};
|
|
|
|
passthru = {
|
|
|
|
updateInfo = {
|
|
|
|
downloadPage = "http://www.cs.nyu.edu/acsys/cvc3/download.html";
|
|
|
|
};
|
|
|
|
};
|
2015-07-07 11:03:30 -07:00
|
|
|
}
|