Specify the coq version in a more consistent location

This commit is contained in:
John Wiegley 2017-12-21 01:24:35 -08:00
parent 60a6b81e2d
commit f962f33593
2 changed files with 4 additions and 2 deletions

View file

@ -9,7 +9,7 @@
, ocamlPackages, ncurses
, buildIde ? true
, csdp ? null
, version ? "8.7.1"
, version
}:
let

View file

@ -64,7 +64,9 @@ in rec {
coq_8_6 = callPackage ../applications/science/logic/coq {
version = "8.6.1";
};
coq_8_7 = callPackage ../applications/science/logic/coq {};
coq_8_7 = callPackage ../applications/science/logic/coq {
version = "8.7.1";
};
coqPackages_8_5 = mkCoqPackages coq_8_5;
coqPackages_8_6 = mkCoqPackages coq_8_6;