From 290df59e84517eae482a0c6b2dc47f44f82f3f3a Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Tue, 10 Jan 2023 10:52:51 +0100 Subject: [PATCH] coqPackages_8_13.smtcoq: fix build by using older make --- pkgs/development/coq-modules/smtcoq/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/coq-modules/smtcoq/default.nix b/pkgs/development/coq-modules/smtcoq/default.nix index be8d18a717a..89a6abd2b1a 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; };