cvc4: 1.5 -> 1.6

This commit is contained in:
Gabriel Ebner 2018-07-05 17:55:42 +02:00
parent d6a202f162
commit bec83a2b9e

View File

@ -1,19 +1,19 @@
{ stdenv, fetchurl, cln, gmp, swig, pkgconfig
, readline, libantlr3c, boost, jdk, autoreconfHook
, python2, antlr3_4
, python3, antlr3_4
}:
stdenv.mkDerivation rec {
name = "cvc4-${version}";
version = "1.5";
version = "1.6";
src = fetchurl {
url = "https://cvc4.cs.stanford.edu/downloads/builds/src/cvc4-${version}.tar.gz";
sha256 = "0yxxawgc9vd2cz883swjlm76rbdkj48n7a8dfppsami530y2rvhi";
sha256 = "1iw793zsi48q91lxpf8xl8lnvv0jsj4whdad79rakywkm1gbs62w";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ gmp cln readline swig libantlr3c antlr3_4 boost jdk python2 ];
buildInputs = [ gmp cln readline swig libantlr3c antlr3_4 boost jdk python3 ];
configureFlags = [
"--enable-language-bindings=c,c++,java"
"--enable-gpl"
@ -38,6 +38,6 @@ stdenv.mkDerivation rec {
homepage = http://cvc4.cs.nyu.edu/web/;
license = licenses.gpl3;
platforms = platforms.unix;
maintainers = with maintainers; [ vbgl thoughtpolice ];
maintainers = with maintainers; [ vbgl thoughtpolice gebner ];
};
}