Skip to content

Commit

Permalink
flake.lock, flake.nix: Update to Coq 8.20
Browse files Browse the repository at this point in the history
  • Loading branch information
jwiegley committed Oct 7, 2024
1 parent b020903 commit 552b4d2
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 9 deletions.
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 9 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@
then {
rev = "v1.3-8.19";
sha256 = "sha256-roBCWfAHDww2Z2JbV5yMI3+EOfIsv3WvxEcUbBiZBsk=";
} else {}) //
(if coqPackages == "coqPackages_8_20"
then {
rev = "v1.3.1-8.20";
sha256 = "sha256-u8LB1KiACM5zVaoL7dSdHYvZgX7pf30VuqtjLLGuTzc=";
} else {}));

phases = [
Expand All @@ -73,7 +78,7 @@
env = pkgs.buildEnv { inherit name; paths = buildInputs; };
passthru = {
compatibleCoqVersions = v:
builtins.elem v [ "8.14" "8.15" "8.16" "8.17" "8.18" "8.19" ];
builtins.elem v [ "8.14" "8.15" "8.16" "8.17" "8.18" "8.19" "8.20" ];
};
};

Expand Down Expand Up @@ -106,7 +111,7 @@
env = pkgs.buildEnv { inherit name; paths = buildInputs; };
passthru = {
compatibleCoqVersions = v:
builtins.elem v [ "8.14" "8.15" "8.16" "8.17" "8.18" "8.19" ];
builtins.elem v [ "8.14" "8.15" "8.16" "8.17" "8.18" "8.19" "8.20" ];
};
};

Expand All @@ -116,8 +121,9 @@
category-theory_8_17 = category-theory "coqPackages_8_17";
category-theory_8_18 = category-theory "coqPackages_8_18";
category-theory_8_19 = category-theory "coqPackages_8_19";
category-theory_8_20 = category-theory "coqPackages_8_20";

default = category-theory_8_19;
default = category-theory_8_20;
};

defaultPackage = packages.default;
Expand Down

0 comments on commit 552b4d2

Please sign in to comment.