lean4: remove cadical copy

By default, lean4's cmake copies the cadical binary from PATH to its
build output directory. Disabling this behavior does not keep Lean from
using cadical.
This commit is contained in:
Archit Gupta
2026-04-24 01:39:20 -07:00
parent 8b1cf894ea
commit ed10debb3c
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -79,6 +79,7 @@ stdenv.mkDerivation (finalAttrs: {
cmakeFlags = [
"-DUSE_GITHASH=OFF"
"-DINSTALL_LICENSE=OFF"
"-DINSTALL_CADICAL=OFF"
"-DUSE_MIMALLOC=${if enableMimalloc then "ON" else "OFF"}"
];
@@ -86,6 +86,7 @@ let
cmakeFlags = [
"-DUSE_GITHASH=OFF"
"-DINSTALL_LICENSE=OFF"
"-DINSTALL_CADICAL=OFF"
"-DUSE_MIMALLOC=ON"
];