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