summary refs log tree commit diff
path: root/pkgs/applications/science/logic
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2014-10-12 01:01:10 +0100
committerAristid Breitkreuz <aristidb@gmail.com>2014-10-12 16:21:02 +0200
commitfe1d8d0015c81451f5ed18f690ec331eccd24879 (patch)
treea57814ae76bd7cab0a7e9de107406cef8a4a308c /pkgs/applications/science/logic
parentaf7cb557fb418784533cb999a40ced7943956130 (diff)
downloadnixlib-fe1d8d0015c81451f5ed18f690ec331eccd24879.tar
nixlib-fe1d8d0015c81451f5ed18f690ec331eccd24879.tar.gz
nixlib-fe1d8d0015c81451f5ed18f690ec331eccd24879.tar.bz2
nixlib-fe1d8d0015c81451f5ed18f690ec331eccd24879.tar.lz
nixlib-fe1d8d0015c81451f5ed18f690ec331eccd24879.tar.xz
nixlib-fe1d8d0015c81451f5ed18f690ec331eccd24879.tar.zst
nixlib-fe1d8d0015c81451f5ed18f690ec331eccd24879.zip
cvc4: new derivation
CVC4 is an efficient open-source automatic theorem prover for
satisfiability modulo theories (SMT) problems.

Homepage: http://cvc4.cs.nyu.edu/web/
Diffstat (limited to 'pkgs/applications/science/logic')
-rw-r--r--pkgs/applications/science/logic/cvc4/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/applications/science/logic/cvc4/default.nix b/pkgs/applications/science/logic/cvc4/default.nix
new file mode 100644
index 000000000000..5b2e9c54d6f8
--- /dev/null
+++ b/pkgs/applications/science/logic/cvc4/default.nix
@@ -0,0 +1,23 @@
+{stdenv, fetchurl, gmp, libantlr3c, boost}:
+
+stdenv.mkDerivation {
+  name = "cvc4-1.4";
+  src = fetchurl {
+    url = http://cvc4.cs.nyu.edu/builds/src/cvc4-1.4.tar.gz;
+    sha256 = "093h7zgv4z4ad503j30dpn8k2pz9m90pvd7gi5axdmwsxgwlzzkn";
+  };
+
+  buildInputs = [ gmp libantlr3c boost ];
+
+  preConfigure = "patchShebangs ./src/";
+
+  doChecks = true;
+
+  meta = with stdenv.lib; {
+    description = "An efficient open-source automatic theorem prover for satisfiability modulo theories (SMT) problems";
+    homepage = http://cvc4.cs.nyu.edu/web/;
+    license = licenses.bsd3;
+    platforms = platforms.unix;
+    maintainers = with maintainers; [ vbgl ];
+  };
+}