coqPackages.smtcoq: disable for Coq > 8.13

This commit is contained in:
Vincent Laporte 2022-05-07 07:29:33 +02:00
parent e9d3fe8f28
commit f393892bb3
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F

View file

@ -9,8 +9,8 @@ mkCoqDerivation {
release."itp22".sha256 = "sha256-CdPfgDfeJy8Q6ZlQeVCSR/x8ZlJ2kSEF6F5UnAespnQ=";
inherit version;
defaultVersion = with versions; switch [ coq.version mathcomp.version ] [
{ cases = [ (isGe "8.13") ]; out = "itp22"; }
defaultVersion = with versions; switch coq.version [
{ case = isEq "8.13"; out = "itp22"; }
] null;
propagatedBuildInputs = [ trakt cvc4 ] ++ lib.optionals (!stdenv.isDarwin) [ veriT ];