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/
This commit is contained in:
parent
af7cb557fb
commit
fe1d8d0015
23
pkgs/applications/science/logic/cvc4/default.nix
Normal file
23
pkgs/applications/science/logic/cvc4/default.nix
Normal file
@ -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 ];
|
||||
};
|
||||
}
|
@ -11617,6 +11617,7 @@ let
|
||||
coqPackages = recurseIntoAttrs (mkCoqPackages_8_4 coqPackages);
|
||||
|
||||
cvc3 = callPackage ../applications/science/logic/cvc3 {};
|
||||
cvc4 = callPackage ../applications/science/logic/cvc4 {};
|
||||
|
||||
ekrhyper = callPackage ../applications/science/logic/ekrhyper {};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user