1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #32643 from kini/drat-trim

drat-trim: init at 2017-08-31
This commit is contained in:
Orivej Desh 2017-12-17 00:31:25 +00:00 committed by GitHub
commit d8f668c7b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "drat-trim-2017-08-31";
src = fetchFromGitHub {
owner = "marijnheule";
repo = "drat-trim";
rev = "37ac8f874826ffa3500a00698910e137498defac";
sha256 = "1m9q47dfnvdli1z3kb1jvvbm0dgaw725k1aw6h9w00bggqb91bqh";
};
installPhase = ''
install -Dt $out/bin drat-trim
'';
meta = with stdenv.lib; {
description = "A proof checker for unSAT proofs";
longDescription = ''
DRAT-trim is a satisfiability proof checking and trimming
utility designed to validate proofs for all known satisfiability
solving and preprocessing techniques. DRAT-trim can also emit
trimmed formulas, optimized proofs, and TraceCheck+ dependency
graphs.
DRAT-trim has been used as part of the judging process in the
annual SAT Competition in recent years, in order to check
competing SAT solvers' work when they claim that a SAT instance
is unsatisfiable.
'';
homepage = https://www.cs.utexas.edu/~marijn/drat-trim/;
license = licenses.mit;
maintainers = with maintainers; [ kini ];
platforms = platforms.all;
};
}

View file

@ -18893,6 +18893,8 @@ with pkgs;
};
cvc4 = callPackage ../applications/science/logic/cvc4 {};
drat-trim = callPackage ../applications/science/logic/drat-trim {};
ekrhyper = callPackage ../applications/science/logic/ekrhyper {
inherit (ocamlPackages_4_02) ocaml;
};