coqPackages.LibHyps: mark as compatible with Rocq 9.0

This commit is contained in:
Théo Zimmermann
2026-02-03 13:48:17 +01:00
parent 4b61cbd24f
commit 5b017e625f
@@ -2,6 +2,7 @@
lib,
mkCoqDerivation,
coq,
stdlib,
version ? null,
}:
@@ -9,13 +10,15 @@ mkCoqDerivation {
pname = "LibHyps";
owner = "Matafou";
inherit version;
defaultVersion = if (lib.versions.range "8.11" "8.20") coq.version then "2.0.8" else null;
defaultVersion = if (lib.versions.range "8.11" "9.0") coq.version then "2.0.8" else null;
release = {
"2.0.8".sha256 = "sha256-u8T7ZWfgYNFBsIPss0uUS0oBvdlwPp3t5yYIMjYzfLc=";
};
configureScript = "./configure.sh";
propagatedBuildInputs = [ stdlib ];
releaseRev = (v: "libhyps-${v}");
meta = {