summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2022-09-08 18:06:23 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2022-09-08 18:06:24 +0200
commit2611f23722b8d5ddf7014e144cd552e669ee77a8 (patch)
tree810d297f328cb74c368b6b1d3c8a2413a55d7f32
parent4bdd2be57422449d2e234169c6fbbe8a71bcca2e (diff)
downloadnixpkgs-2611f23722b8d5ddf7014e144cd552e669ee77a8.tar
nixpkgs-2611f23722b8d5ddf7014e144cd552e669ee77a8.tar.gz
nixpkgs-2611f23722b8d5ddf7014e144cd552e669ee77a8.tar.bz2
nixpkgs-2611f23722b8d5ddf7014e144cd552e669ee77a8.tar.lz
nixpkgs-2611f23722b8d5ddf7014e144cd552e669ee77a8.tar.xz
nixpkgs-2611f23722b8d5ddf7014e144cd552e669ee77a8.tar.zst
nixpkgs-2611f23722b8d5ddf7014e144cd552e669ee77a8.zip
coqPackages.mathcomp-word: enable for Coq 8.16
-rw-r--r--pkgs/development/coq-modules/mathcomp-word/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/coq-modules/mathcomp-word/default.nix b/pkgs/development/coq-modules/mathcomp-word/default.nix
index 463c5e5f5e9..f39fbe0ac6a 100644
--- a/pkgs/development/coq-modules/mathcomp-word/default.nix
+++ b/pkgs/development/coq-modules/mathcomp-word/default.nix
@@ -15,7 +15,7 @@ mkCoqDerivation {
 
   inherit version;
   defaultVersion = with versions; switch [ coq.version mathcomp.version ] [
-    { cases = [ (range "8.12" "8.15") (isGe "1.12") ]; out = "1.1"; }
+    { cases = [ (range "8.12" "8.16") (isGe "1.12") ]; out = "1.1"; }
   ] null;
 
   propagatedBuildInputs = [ mathcomp.algebra mathcomp.ssreflect mathcomp.fingroup ];