about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2017-11-12 08:49:44 -0800
committerJohn Wiegley <johnw@newartisans.com>2017-11-12 08:50:37 -0800
commitf1fc74359f815010b4b3055b3a6062af9398e406 (patch)
tree3c898f81a646811a9c0d5eeb8a90c033cbac438a
parentb2418ca598291779b6f20da2a682c11ef8965ada (diff)
downloadnixlib-f1fc74359f815010b4b3055b3a6062af9398e406.tar
nixlib-f1fc74359f815010b4b3055b3a6062af9398e406.tar.gz
nixlib-f1fc74359f815010b4b3055b3a6062af9398e406.tar.bz2
nixlib-f1fc74359f815010b4b3055b3a6062af9398e406.tar.lz
nixlib-f1fc74359f815010b4b3055b3a6062af9398e406.tar.xz
nixlib-f1fc74359f815010b4b3055b3a6062af9398e406.tar.zst
nixlib-f1fc74359f815010b4b3055b3a6062af9398e406.zip
coqPackages.ssreflect: Build version 0.6.4 for Coq 8.6 and 8.7
-rw-r--r--pkgs/development/coq-modules/ssreflect/default.nix30
1 files changed, 26 insertions, 4 deletions
diff --git a/pkgs/development/coq-modules/ssreflect/default.nix b/pkgs/development/coq-modules/ssreflect/default.nix
index 352b98ab88b9..35c23842158d 100644
--- a/pkgs/development/coq-modules/ssreflect/default.nix
+++ b/pkgs/development/coq-modules/ssreflect/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}-ssreflect-${param.version}";