2015-07-07 19:03:30 +01:00
|
|
|
{ stdenv, fetchurl, flex, bison, gmp, perl }:
|
2010-12-05 17:28:41 +00:00
|
|
|
|
2015-07-07 19:03:30 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "cvc3";
|
2015-07-07 19:03:30 +01:00
|
|
|
version = "2.4.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "http://www.cs.nyu.edu/acsys/cvc3/releases/${version}/${pname}-${version}.tar.gz";
|
2015-07-07 19:03:30 +01:00
|
|
|
sha256 = "1xxcwhz3y6djrycw8sm6xz83wb4hb12rd1n0skvc7fng0rh1snym";
|
|
|
|
};
|
2010-12-05 17:28:41 +00:00
|
|
|
|
2015-07-07 19:03:30 +01:00
|
|
|
buildInputs = [ gmp flex bison perl ];
|
2010-12-05 17:28:41 +00:00
|
|
|
|
2017-08-29 19:48:09 +01:00
|
|
|
patches = [ ./cvc3-2.4.1-gccv6-fix.patch ];
|
|
|
|
|
2020-09-22 21:29:07 +01:00
|
|
|
postPatch = ''
|
2010-12-05 17:28:41 +00: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 21:29:07 +01: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 19:03:30 +01:00
|
|
|
'';
|
2014-11-06 00:44:33 +00:00
|
|
|
|
2015-07-07 19:03:30 +01:00
|
|
|
meta = with stdenv.lib; {
|
2010-12-05 17:28:41 +00:00
|
|
|
description = "A prover for satisfiability modulo theory (SMT)";
|
2015-07-07 19:03:30 +01:00
|
|
|
maintainers = with maintainers;
|
|
|
|
[ raskin ];
|
2020-09-22 21:59:28 +01:00
|
|
|
platforms = platforms.unix;
|
2015-07-07 19:03:30 +01:00
|
|
|
license = licenses.free;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.cs.nyu.edu/acsys/cvc3/index.html";
|
2010-12-05 17:28:41 +00:00
|
|
|
};
|
|
|
|
passthru = {
|
|
|
|
updateInfo = {
|
|
|
|
downloadPage = "http://www.cs.nyu.edu/acsys/cvc3/download.html";
|
|
|
|
};
|
|
|
|
};
|
2015-07-07 19:03:30 +01:00
|
|
|
}
|