about summary refs log tree commit diff
path: root/pkgs/development/coq-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2021-10-31 08:11:39 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2021-11-13 13:17:20 +0100
commit3e84e0fd7da610668bde7a5f9a548d9f02ee2ac8 (patch)
tree2087006248f3fcba51cb07829d6a30e23f9c0532 /pkgs/development/coq-modules
parent551c849344b90f605ad61e193337582e16116fdb (diff)
coqPackages.graph-theory: enable for Coq 8.14
Diffstat (limited to 'pkgs/development/coq-modules')
-rw-r--r--pkgs/development/coq-modules/graph-theory/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/coq-modules/graph-theory/default.nix b/pkgs/development/coq-modules/graph-theory/default.nix
index 1ecda185cdd89..5607d342a2eb2 100644
--- a/pkgs/development/coq-modules/graph-theory/default.nix
+++ b/pkgs/development/coq-modules/graph-theory/default.nix
@@ -12,7 +12,7 @@ mkCoqDerivation {
 
   inherit version;
   defaultVersion = with versions; switch coq.coq-version [
-    { case = isEq "8.13"; out = "0.9"; }
+    { case = isGe "8.13"; out = "0.9"; }
   ] null;
 
   propagatedBuildInputs = [ mathcomp-algebra mathcomp-finmap hierarchy-builder ];