Skip to content

Commit 552b4d2

Browse files
committed
flake.lock, flake.nix: Update to Coq 8.20
1 parent b020903 commit 552b4d2

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
lines changed

flake.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+9-3
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@
4848
then {
4949
rev = "v1.3-8.19";
5050
sha256 = "sha256-roBCWfAHDww2Z2JbV5yMI3+EOfIsv3WvxEcUbBiZBsk=";
51+
} else {}) //
52+
(if coqPackages == "coqPackages_8_20"
53+
then {
54+
rev = "v1.3.1-8.20";
55+
sha256 = "sha256-u8LB1KiACM5zVaoL7dSdHYvZgX7pf30VuqtjLLGuTzc=";
5156
} else {}));
5257

5358
phases = [
@@ -73,7 +78,7 @@
7378
env = pkgs.buildEnv { inherit name; paths = buildInputs; };
7479
passthru = {
7580
compatibleCoqVersions = v:
76-
builtins.elem v [ "8.14" "8.15" "8.16" "8.17" "8.18" "8.19" ];
81+
builtins.elem v [ "8.14" "8.15" "8.16" "8.17" "8.18" "8.19" "8.20" ];
7782
};
7883
};
7984

@@ -106,7 +111,7 @@
106111
env = pkgs.buildEnv { inherit name; paths = buildInputs; };
107112
passthru = {
108113
compatibleCoqVersions = v:
109-
builtins.elem v [ "8.14" "8.15" "8.16" "8.17" "8.18" "8.19" ];
114+
builtins.elem v [ "8.14" "8.15" "8.16" "8.17" "8.18" "8.19" "8.20" ];
110115
};
111116
};
112117

@@ -116,8 +121,9 @@
116121
category-theory_8_17 = category-theory "coqPackages_8_17";
117122
category-theory_8_18 = category-theory "coqPackages_8_18";
118123
category-theory_8_19 = category-theory "coqPackages_8_19";
124+
category-theory_8_20 = category-theory "coqPackages_8_20";
119125

120-
default = category-theory_8_19;
126+
default = category-theory_8_20;
121127
};
122128

123129
defaultPackage = packages.default;

0 commit comments

Comments
 (0)