summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorGabriel Ebner <gebner@gebner.org>2018-07-05 17:55:42 +0200
committerGabriel Ebner <gebner@gebner.org>2018-07-05 17:57:06 +0200
commitbec83a2b9e1622659f2d2fccd29bc401fcb87915 (patch)
tree020fda555b8da60fc94d3bd840e6c11fb8bb4d48 /pkgs/applications
parentd6a202f1628ab64cd28bef7fb4554ac8783a4181 (diff)
downloadnixlib-bec83a2b9e1622659f2d2fccd29bc401fcb87915.tar
nixlib-bec83a2b9e1622659f2d2fccd29bc401fcb87915.tar.gz
nixlib-bec83a2b9e1622659f2d2fccd29bc401fcb87915.tar.bz2
nixlib-bec83a2b9e1622659f2d2fccd29bc401fcb87915.tar.lz
nixlib-bec83a2b9e1622659f2d2fccd29bc401fcb87915.tar.xz
nixlib-bec83a2b9e1622659f2d2fccd29bc401fcb87915.tar.zst
nixlib-bec83a2b9e1622659f2d2fccd29bc401fcb87915.zip
cvc4: 1.5 -> 1.6
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/science/logic/cvc4/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/science/logic/cvc4/default.nix b/pkgs/applications/science/logic/cvc4/default.nix
index 91ea7e500144..222021bb1c9f 100644
--- a/pkgs/applications/science/logic/cvc4/default.nix
+++ b/pkgs/applications/science/logic/cvc4/default.nix
@@ -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 ];
   };
 }