about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/science/logic/zchaff/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/science/logic/zchaff/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/science/logic/zchaff/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/science/logic/zchaff/default.nix b/nixpkgs/pkgs/applications/science/logic/zchaff/default.nix
new file mode 100644
index 000000000000..57f673042dc8
--- /dev/null
+++ b/nixpkgs/pkgs/applications/science/logic/zchaff/default.nix
@@ -0,0 +1,31 @@
+{ lib, clangStdenv, fetchzip }:
+
+clangStdenv.mkDerivation rec {
+  pname = "zchaff";
+  version = "2007.3.12";
+
+  src = fetchzip {
+    url = "https://www.princeton.edu/~chaff/zchaff/zchaff.64bit.${version}.zip";
+    sha256 = "sha256-88fAtJb7o+Qv2GohTdmquxMEq4oCbiKbqLFmS7zs1Ak=";
+  };
+
+  patches = [ ./sat_solver.patch ];
+  postPatch = ''
+    substituteInPlace zchaff_solver.cpp --replace "// #define VERIFY_ON" "#define VERIFY_ON"
+  '';
+
+  makeFlags = [ "CC=${clangStdenv.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;
+  };
+}