summaryrefslogtreecommitdiffstats
path: root/pkgs/development/coq-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2020-07-02 07:37:07 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2020-07-09 08:17:49 +0200
commitf6db90a389caa6d07168996aca44e5248830f719 (patch)
treeaf994f90968bca034a06cc32fa3cf33962f31348 /pkgs/development/coq-modules
parent12e255f39596b401c68711139733612fc9c52d61 (diff)
coqPackages.coq-bits: enable for Coq 8.11 and 8.12
Diffstat (limited to 'pkgs/development/coq-modules')
-rw-r--r--pkgs/development/coq-modules/coq-bits/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/coq-modules/coq-bits/default.nix b/pkgs/development/coq-modules/coq-bits/default.nix
index 05dcb7898e50..9665c5400d85 100644
--- a/pkgs/development/coq-modules/coq-bits/default.nix
+++ b/pkgs/development/coq-modules/coq-bits/default.nix
@@ -25,7 +25,7 @@ stdenv.mkDerivation {
'';
meta = with stdenv.lib; {
- homepage = "https://github.com/coq-community/coq-bits";
+ homepage = "https://github.com/coq-community/bits";
description = "A formalization of bitset operations in Coq";
license = licenses.asl20;
maintainers = with maintainers; [ ptival ];
@@ -33,6 +33,6 @@ stdenv.mkDerivation {
};
passthru = {
- compatibleCoqVersions = v: builtins.elem v [ "8.7" "8.8" "8.9" "8.10" ];
+ compatibleCoqVersions = v: builtins.elem v [ "8.7" "8.8" "8.9" "8.10" "8.11" "8.12" ];
};
}