coqPackages_8_9: disable a few packages that do not build

This commit is contained in:
Vincent Laporte 2019-02-01 13:25:26 +00:00 committed by Vincent Laporte
parent 895f9d3b73
commit 36e9fe820c
3 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
};
passthru = {
compatibleCoqVersions = v: stdenv.lib.versionAtLeast v "8.6";
compatibleCoqVersions = v: builtins.elem v [ "8.6" "8.7" "8.8" ];
};
}

View File

@ -50,7 +50,7 @@ stdenv.mkDerivation rec {
};
passthru = {
compatibleCoqVersions = v: stdenv.lib.versionAtLeast v "8.6";
compatibleCoqVersions = v: builtins.elem v [ "8.6" "8.7" "8.8" ];
};
}

View File

@ -22,7 +22,7 @@ stdenv.mkDerivation {
};
passthru = {
compatibleCoqVersions = v: stdenv.lib.versionAtLeast v "8.6";
compatibleCoqVersions = v: builtins.elem v [ "8.6" "8.7" "8.8" ];
};
}