Commit 0018055b authored by Pierre Roux's avatar Pierre Roux Committed by Vincent Laporte
Browse files

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

parent e5b1786d
Loading
Loading
Loading
Loading
+12 −11
Original line number Diff line number Diff line
@@ -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
    ]