2017-11-05 17:34:32 +00:00
|
|
|
{ stdenv, fetchurl, cln, gmp, swig, pkgconfig
|
|
|
|
, readline, libantlr3c, boost, jdk, autoreconfHook
|
2018-07-05 16:55:42 +01:00
|
|
|
, python3, antlr3_4
|
2017-11-05 17:34:32 +00:00
|
|
|
}:
|
2015-06-14 20:35:29 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "cvc4";
|
2018-07-05 16:55:42 +01:00
|
|
|
version = "1.6";
|
2014-10-12 01:01:10 +01:00
|
|
|
|
2017-11-05 17:34:32 +00:00
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://cvc4.cs.stanford.edu/downloads/builds/src/cvc4-${version}.tar.gz";
|
2018-07-05 16:55:42 +01:00
|
|
|
sha256 = "1iw793zsi48q91lxpf8xl8lnvv0jsj4whdad79rakywkm1gbs62w";
|
2014-10-12 01:01:10 +01:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2018-07-05 16:55:42 +01:00
|
|
|
buildInputs = [ gmp cln readline swig libantlr3c antlr3_4 boost jdk python3 ];
|
2016-07-24 12:11:17 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-language-bindings=c,c++,java"
|
|
|
|
"--enable-gpl"
|
|
|
|
"--with-cln"
|
|
|
|
"--with-readline"
|
|
|
|
"--with-boost=${boost.dev}"
|
|
|
|
];
|
2017-11-05 17:34:32 +00:00
|
|
|
|
2017-11-08 18:20:50 +00:00
|
|
|
prePatch = ''
|
|
|
|
patch -p1 -i ${./minisat-fenv.patch} -d src/prop/minisat
|
|
|
|
patch -p1 -i ${./minisat-fenv.patch} -d src/prop/bvminisat
|
|
|
|
'';
|
|
|
|
|
2016-03-31 00:52:23 +01:00
|
|
|
preConfigure = ''
|
|
|
|
patchShebangs ./src/
|
|
|
|
'';
|
2014-10-12 01:01:10 +01:00
|
|
|
|
2017-11-08 18:16:16 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-10-12 01:01:10 +01:00
|
|
|
meta = with stdenv.lib; {
|
2015-06-14 20:35:29 +01:00
|
|
|
description = "A high-performance theorem prover and SMT solver";
|
2018-07-16 15:58:22 +01:00
|
|
|
homepage = http://cvc4.cs.stanford.edu/web/;
|
2016-07-24 12:11:17 +01:00
|
|
|
license = licenses.gpl3;
|
2015-06-14 20:35:29 +01:00
|
|
|
platforms = platforms.unix;
|
2018-07-05 16:55:42 +01:00
|
|
|
maintainers = with maintainers; [ vbgl thoughtpolice gebner ];
|
2014-10-12 01:01:10 +01:00
|
|
|
};
|
|
|
|
}
|