summary refs log tree commit diff
path: root/pkgs/applications/science/logic/cvc4
diff options
context:
space:
mode:
authorAustin Seipp <aseipp@pobox.com>2015-06-14 14:35:29 -0500
committerAustin Seipp <aseipp@pobox.com>2015-06-14 19:48:11 -0500
commit6cfc2caaeb94a3fb3c789e6f8853bf69c5e3858a (patch)
tree8acc9c56013bad02649d960bdd2b2a7bd449ca31 /pkgs/applications/science/logic/cvc4
parentfaa90fad3fa97161e55ea28262ede574477db5e6 (diff)
downloadnixpkgs-6cfc2caaeb94a3fb3c789e6f8853bf69c5e3858a.tar
nixpkgs-6cfc2caaeb94a3fb3c789e6f8853bf69c5e3858a.tar.gz
nixpkgs-6cfc2caaeb94a3fb3c789e6f8853bf69c5e3858a.tar.bz2
nixpkgs-6cfc2caaeb94a3fb3c789e6f8853bf69c5e3858a.tar.lz
nixpkgs-6cfc2caaeb94a3fb3c789e6f8853bf69c5e3858a.tar.xz
nixpkgs-6cfc2caaeb94a3fb3c789e6f8853bf69c5e3858a.tar.zst
nixpkgs-6cfc2caaeb94a3fb3c789e6f8853bf69c5e3858a.zip
nixpkgs/cvc4: touchups, add myself as maintainer
Signed-off-by: Austin Seipp <aseipp@pobox.com>
Diffstat (limited to 'pkgs/applications/science/logic/cvc4')
-rw-r--r--pkgs/applications/science/logic/cvc4/default.nix22
1 files changed, 11 insertions, 11 deletions
diff --git a/pkgs/applications/science/logic/cvc4/default.nix b/pkgs/applications/science/logic/cvc4/default.nix
index 5b2e9c54d6f..5d2968e42a6 100644
--- a/pkgs/applications/science/logic/cvc4/default.nix
+++ b/pkgs/applications/science/logic/cvc4/default.nix
@@ -1,23 +1,23 @@
-{stdenv, fetchurl, gmp, libantlr3c, boost}:
+{ stdenv, fetchurl, gmp, libantlr3c, boost }:
+
+stdenv.mkDerivation rec {
+  name = "cvc4-${version}";
+  version = "1.4";
 
-stdenv.mkDerivation {
-  name = "cvc4-1.4";
   src = fetchurl {
-    url = http://cvc4.cs.nyu.edu/builds/src/cvc4-1.4.tar.gz;
+    url = "http://cvc4.cs.nyu.edu/builds/src/cvc4-${version}.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 ];
+    description = "A high-performance theorem prover and SMT solver";
+    homepage    = http://cvc4.cs.nyu.edu/web/;
+    license     = licenses.bsd3;
+    platforms   = platforms.unix;
+    maintainers = with maintainers; [ vbgl thoughtpolice ];
   };
 }