nixpkgs/cvc4: touchups, add myself as maintainer

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2015-06-14 14:35:29 -05:00
parent faa90fad3f
commit 6cfc2caaeb

View File

@ -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 { 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"; sha256 = "093h7zgv4z4ad503j30dpn8k2pz9m90pvd7gi5axdmwsxgwlzzkn";
}; };
buildInputs = [ gmp libantlr3c boost ]; buildInputs = [ gmp libantlr3c boost ];
preConfigure = "patchShebangs ./src/"; preConfigure = "patchShebangs ./src/";
doChecks = true; doChecks = true;
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "An efficient open-source automatic theorem prover for satisfiability modulo theories (SMT) problems"; description = "A high-performance theorem prover and SMT solver";
homepage = http://cvc4.cs.nyu.edu/web/; homepage = http://cvc4.cs.nyu.edu/web/;
license = licenses.bsd3; license = licenses.bsd3;
platforms = platforms.unix; platforms = platforms.unix;
maintainers = with maintainers; [ vbgl ]; maintainers = with maintainers; [ vbgl thoughtpolice ];
}; };
} }