coqPackages.{hierarchy-builder,trakt}: disable for Coq ≥ 8.16

They depend on elpi (not yet available in nixpkgs)
This commit is contained in:
Vincent Laporte 2022-06-03 14:54:23 +02:00 committed by Vincent Laporte
parent 10f159ffd1
commit 61d8986385
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@ with lib; let hb = mkCoqDerivation {
owner = "math-comp";
inherit version;
defaultVersion = with versions; switch coq.coq-version [
{ case = isGe "8.15"; out = "1.2.1"; }
{ case = isEq "8.15"; out = "1.2.1"; }
{ case = range "8.13" "8.14"; out = "1.2.0"; }
{ case = range "8.12" "8.13"; out = "1.1.0"; }
{ case = isEq "8.11"; out = "0.10.0"; }

View file

@ -10,7 +10,7 @@ mkCoqDerivation {
inherit version;
defaultVersion = with versions; switch [ coq.version ] [
{ cases = [ (isGe "8.13") ]; out = "1.0"; }
{ cases = [ (range "8.13" "8.15") ]; out = "1.0"; }
] null;
propagatedBuildInputs = [ coq-elpi ];