coqPackages.coq-haskell: Update to add Hask.Ssr module

This commit is contained in:
John Wiegley 2017-12-15 08:53:31 -08:00
parent 884b748ceb
commit 8123bc7942

View File

@ -1,23 +1,23 @@
{ stdenv, fetchgit, coq }: { stdenv, fetchgit, coq, ssreflect }:
let param = let param =
{ {
"8.5" = { "8.5" = {
version = "20171214"; version = "20171215";
rev = "d319043533585f60f0c89919a8370f85a9cf572b"; rev = "e2cf8b270c2efa3b56fab1ef6acc376c2c3de968";
sha256 = "154a8sx5igw86wby0ybk3rv5y21cji8489amgxhgqxfys9zmx2di"; sha256 = "09dq1vvshhlhgjccrhqgbhnq2hrys15xryfszqq11rzpgvl2zgdv";
}; };
"8.6" = { "8.6" = {
version = "20171214"; version = "20171215";
rev = "d319043533585f60f0c89919a8370f85a9cf572b"; rev = "e2cf8b270c2efa3b56fab1ef6acc376c2c3de968";
sha256 = "154a8sx5igw86wby0ybk3rv5y21cji8489amgxhgqxfys9zmx2di"; sha256 = "09dq1vvshhlhgjccrhqgbhnq2hrys15xryfszqq11rzpgvl2zgdv";
}; };
"8.7" = { "8.7" = {
version = "20171214"; version = "20171215";
rev = "d319043533585f60f0c89919a8370f85a9cf572b"; rev = "e2cf8b270c2efa3b56fab1ef6acc376c2c3de968";
sha256 = "154a8sx5igw86wby0ybk3rv5y21cji8489amgxhgqxfys9zmx2di"; sha256 = "09dq1vvshhlhgjccrhqgbhnq2hrys15xryfszqq11rzpgvl2zgdv";
}; };
}."${coq.coq-version}" }."${coq.coq-version}"
@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
}; };
buildInputs = [ coq.ocaml coq.camlp5 coq.findlib ]; buildInputs = [ coq.ocaml coq.camlp5 coq.findlib ];
propagatedBuildInputs = [ coq ]; propagatedBuildInputs = [ coq ssreflect ];
enableParallelBuilding = false; enableParallelBuilding = false;