summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2023-01-10 10:52:51 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2023-01-11 08:43:14 +0100
commit290df59e84517eae482a0c6b2dc47f44f82f3f3a (patch)
tree48335194a4e25df2a8f00c1a9b7219759919318e
parent670a782340f72208b5b5f79c9a72987206ac9967 (diff)
coqPackages_8_13.smtcoq: fix build by using older make
-rw-r--r--pkgs/development/coq-modules/smtcoq/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/coq-modules/smtcoq/default.nix b/pkgs/development/coq-modules/smtcoq/default.nix
index be8d18a717ab..89a6abd2b1ac 100644
--- a/pkgs/development/coq-modules/smtcoq/default.nix
+++ b/pkgs/development/coq-modules/smtcoq/default.nix
@@ -29,7 +29,7 @@ mkCoqDerivation {
propagatedBuildInputs = [ trakt cvc4 veriT' zchaff ] ++ (with coq.ocamlPackages; [ num zarith ]);
mlPlugin = true;
- nativeBuildInputs = with coq.ocamlPackages; [ ocamlbuild ];
+ nativeBuildInputs = (with pkgs; [ gnumake42 ]) ++ (with coq.ocamlPackages; [ ocamlbuild ]);
# This is meant to ease future troubleshooting of cvc4 build failures
passthru = { inherit cvc4; };