coqPackages.smtcoq: don't build currently-broken specific veriT

This commit is contained in:
Pierre Roux
2025-01-06 11:54:13 +01:00
committed by Vincent Laporte
parent e5b1786ddb
commit 0018055bc1
+12 -11
View File
@@ -11,16 +11,17 @@
version ? null,
}:
let
# version of veriT that works with SMTCoq
veriT' = veriT.overrideAttrs (oA: {
src = fetchurl {
url = "https://www.lri.fr/~keller/Documents-recherche/Smtcoq/veriT9f48a98.tar.gz";
sha256 = "sha256-Pe46PxQVHWwWwx5Ei4Bl95A0otCiXZuUZ2nXuZPYnhY=";
};
meta.broken = false;
});
in
# Broken since https://github.com/NixOS/nixpkgs/pull/354627, temporarily disactivated
# let
# # version of veriT that works with SMTCoq
# veriT' = veriT.overrideAttrs (oA: {
# src = fetchurl {
# url = "https://www.lri.fr/~keller/Documents-recherche/Smtcoq/veriT9f48a98.tar.gz";
# sha256 = "sha256-Pe46PxQVHWwWwx5Ei4Bl95A0otCiXZuUZ2nXuZPYnhY=";
# };
# meta.broken = false;
# });
# in
mkCoqDerivation {
pname = "smtcoq";
@@ -79,7 +80,7 @@ mkCoqDerivation {
propagatedBuildInputs =
[
cvc5
veriT'
# veriT' # c.f. comment above
zchaff
stdlib
]