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 , ocamlPackages, ncurses
, buildIde ? true , buildIde ? true
, csdp ? null , csdp ? null
, version ? "8.7.1" , version
}: }:
let let

View File

@ -64,7 +64,9 @@ in rec {
coq_8_6 = callPackage ../applications/science/logic/coq { coq_8_6 = callPackage ../applications/science/logic/coq {
version = "8.6.1"; 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_5 = mkCoqPackages coq_8_5;
coqPackages_8_6 = mkCoqPackages coq_8_6; coqPackages_8_6 = mkCoqPackages coq_8_6;