summary refs log tree commit diff
path: root/pkgs/development/coq-modules/mathcomp/default.nix
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2017-11-11 09:44:29 -0800
committerJohn Wiegley <johnw@newartisans.com>2017-11-11 09:44:55 -0800
commit462b5e0d21f3735b0dc8fecb70ffa616ffd0fef6 (patch)
tree24840a6ad0fece4186c9e97117d3104b80a046f2 /pkgs/development/coq-modules/mathcomp/default.nix
parentf1caf10ec96708e198a0e9242104d2381ea4f0ca (diff)
downloadnixpkgs-462b5e0d21f3735b0dc8fecb70ffa616ffd0fef6.tar
nixpkgs-462b5e0d21f3735b0dc8fecb70ffa616ffd0fef6.tar.gz
nixpkgs-462b5e0d21f3735b0dc8fecb70ffa616ffd0fef6.tar.bz2
nixpkgs-462b5e0d21f3735b0dc8fecb70ffa616ffd0fef6.tar.lz
nixpkgs-462b5e0d21f3735b0dc8fecb70ffa616ffd0fef6.tar.xz
nixpkgs-462b5e0d21f3735b0dc8fecb70ffa616ffd0fef6.tar.zst
nixpkgs-462b5e0d21f3735b0dc8fecb70ffa616ffd0fef6.zip
coqPackages.mathcomp: 1.6.1 -> 1.6.4, for Coq versions 8.6 and 8.7
Diffstat (limited to 'pkgs/development/coq-modules/mathcomp/default.nix')
-rw-r--r--pkgs/development/coq-modules/mathcomp/default.nix30
1 files changed, 26 insertions, 4 deletions
diff --git a/pkgs/development/coq-modules/mathcomp/default.nix b/pkgs/development/coq-modules/mathcomp/default.nix
index a80c934c6c1..48cb2c4d33f 100644
--- a/pkgs/development/coq-modules/mathcomp/default.nix
+++ b/pkgs/development/coq-modules/mathcomp/default.nix
@@ -2,10 +2,32 @@
 
 let param =
   {
-    version = "1.6.1";
-    url = https://github.com/math-comp/math-comp/archive/mathcomp-1.6.1.tar.gz;
-    sha256 = "1j9ylggjzrxz1i2hdl2yhsvmvy5z6l4rprwx7604401080p5sgjw";
-  }; in
+    "8.4" =  {
+      version = "1.6.1";
+      url = https://github.com/math-comp/math-comp/archive/mathcomp-1.6.1.tar.gz;
+      sha256 = "1j9ylggjzrxz1i2hdl2yhsvmvy5z6l4rprwx7604401080p5sgjw";
+    };
+
+    "8.5" =  {
+      version = "1.6.1";
+      url = https://github.com/math-comp/math-comp/archive/mathcomp-1.6.1.tar.gz;
+      sha256 = "1j9ylggjzrxz1i2hdl2yhsvmvy5z6l4rprwx7604401080p5sgjw";
+    };
+
+    "8.6" =  {
+      version = "1.6.4";
+      url = https://github.com/math-comp/math-comp/archive/mathcomp-1.6.4.tar.gz;
+      sha256 = "0qmjjb6jsxmmf4gpw10r30rmrvwqgzirvvgyy41mz2vhgwis8wn6";
+    };
+
+    "8.7" = {
+      version = "1.6.4";
+      url = https://github.com/math-comp/math-comp/archive/mathcomp-1.6.4.tar.gz;
+      sha256 = "0qmjjb6jsxmmf4gpw10r30rmrvwqgzirvvgyy41mz2vhgwis8wn6";
+    };
+
+  }."${coq.coq-version}"
+; in
 
 callPackage ./generic.nix {
   name = "coq${coq.coq-version}-mathcomp-${param.version}";