Merge pull request #173933 from siraben/zchaff-init

zchaff: init at 2004.5.13
This commit is contained in:
Ben Siraphob 2022-05-21 16:26:06 -07:00 committed by GitHub
commit 3c31489f15
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "zchaff";
version = "2004.5.13";
src = fetchurl {
url = "https://www.princeton.edu/~chaff/zchaff/zchaff.${version}.tar.gz";
sha256 = "sha256-IgOdb2KsFbRV3gPvIPkHa71ixnYRxyx91vt7m0jzIAw=";
};
patches = [ ./sat_solver.patch ];
makeFlags = [ "CC=${stdenv.cc.targetPrefix}c++" ];
installPhase= ''
runHook preInstall
install -Dm755 -t $out/bin zchaff
runHook postInstall
'';
meta = with lib; {
homepage = "https://www.princeton.edu/~chaff/zchaf";
description = "Accelerated SAT Solver from Princeton";
license = licenses.mit;
maintainers = with maintainers; [ siraben ];
platforms = platforms.unix;
};
}

View file

@ -0,0 +1,12 @@
diff --git a/sat_solver.cpp b/sat_solver.cpp
index e191881..07c0926 100644
--- a/sat_solver.cpp
+++ b/sat_solver2.cpp
@@ -43,6 +43,7 @@
#include <vector>
#include <dirent.h>
#include "SAT.h"
+#include <cstring>
using namespace std;

View file

@ -33404,6 +33404,8 @@ with pkgs;
};
z3-tptp = callPackage ../applications/science/logic/z3/tptp.nix {};
zchaff = callPackage ../applications/science/logic/zchaff { };
tlaplus = callPackage ../applications/science/logic/tlaplus {
jre = jre8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731
};