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