about summary refs log tree commit diff
path: root/pkgs/development/coq-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2020-07-08 06:28:07 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2020-07-19 18:41:00 +0200
commitf2df7cd34f50617612c0225330175a91bce621a3 (patch)
tree7e8c6666a22492b7f4481970129840ba9c62ad8a /pkgs/development/coq-modules
parentaac481037491173bec2d6228880ff3df44424c65 (diff)
downloadnixlib-f2df7cd34f50617612c0225330175a91bce621a3.tar
nixlib-f2df7cd34f50617612c0225330175a91bce621a3.tar.gz
nixlib-f2df7cd34f50617612c0225330175a91bce621a3.tar.bz2
nixlib-f2df7cd34f50617612c0225330175a91bce621a3.tar.lz
nixlib-f2df7cd34f50617612c0225330175a91bce621a3.tar.xz
nixlib-f2df7cd34f50617612c0225330175a91bce621a3.tar.zst
nixlib-f2df7cd34f50617612c0225330175a91bce621a3.zip
coqPackages.math-classes: 8.9.1 → 8.11.0
Diffstat (limited to 'pkgs/development/coq-modules')
-rw-r--r--pkgs/development/coq-modules/math-classes/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/coq-modules/math-classes/default.nix b/pkgs/development/coq-modules/math-classes/default.nix
index 9ab77418cce1..73e420b326d9 100644
--- a/pkgs/development/coq-modules/math-classes/default.nix
+++ b/pkgs/development/coq-modules/math-classes/default.nix
@@ -3,13 +3,13 @@
 stdenv.mkDerivation rec {
 
   name = "coq${coq.coq-version}-math-classes-${version}";
-  version = "8.9.1";
+  version = "8.11.0";
 
   src = fetchFromGitHub {
     owner = "coq-community";
     repo = "math-classes";
     rev = version;
-    sha256 = "1lw89js07m1wcaycpnyd85sf0snil2rrsfmry9lna2x66ah1mzn5";
+    sha256 = "1hjgncvm1m46lw6264w4dqsy8dbh74vhmzq52x0fba2yqlvy94sf";
   };
 
   buildInputs = [ coq bignums ];
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
   };
 
   passthru = {
-    compatibleCoqVersions = v: builtins.elem v [ "8.6" "8.7" "8.8" "8.9" "8.10" ];
+    compatibleCoqVersions = v: builtins.elem v [ "8.6" "8.7" "8.8" "8.9" "8.10" "8.11" ];
   };
 
 }