coqPackages.coqprime: enable for Coq 8.9

This commit is contained in:
Vincent Laporte 2018-12-13 09:20:24 +00:00 committed by Vincent Laporte
parent 88d52d89e2
commit 881bec3238

View file

@ -1,16 +1,19 @@
{ stdenv, fetchFromGitHub, coq, bignums }:
let params =
let v_8_8 = {
version = "8.8";
sha256 = "075yjczk79pf1hd3lgdjiz84ilkzfxjh18lgzrhhqp7d3kz5lxp5";
};
in
{
"8.7" = {
version = "8.7.2";
sha256 = "15zlcrx06qqxjy3nhh22wzy0rb4npc8l4nx2bbsfsvrisbq1qb7k";
};
"8.8" = {
version = "8.8";
sha256 = "075yjczk79pf1hd3lgdjiz84ilkzfxjh18lgzrhhqp7d3kz5lxp5";
"8.8" = v_8_8;
"8.9" = v_8_8;
};
};
param = params."${coq.coq-version}"
; in