coqPackages.atbr: init at 8.20.0

This commit is contained in:
Pierre Roux 2024-08-01 15:46:03 +02:00 committed by Vincent Laporte
parent de0738a1ae
commit 43aaea3618
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ lib, mkCoqDerivation, coq, version ? null }:
mkCoqDerivation {
pname = "atbr";
inherit version;
defaultVersion = let inherit (lib.versions) range; in
lib.switch coq.coq-version [
{ case = range "8.20" "8.20"; out = "8.20.0"; }
] null;
release = {
"8.20.0".sha256 = "sha256-Okhtq6Gnq4HA3tEZJvf8JBnmk3OKdm6hC1qINmoShmo=";
};
releaseRev = v: "v${v}";
mlPlugin = true;
meta = {
description = "Coq library and tactic for deciding Kleene algebras";
license = lib.licenses.lgpl3Plus;
};
}

View File

@ -19,6 +19,7 @@ let
aac-tactics = callPackage ../development/coq-modules/aac-tactics {};
addition-chains = callPackage ../development/coq-modules/addition-chains {};
atbr = callPackage ../development/coq-modules/atbr {};
autosubst = callPackage ../development/coq-modules/autosubst {};
bignums = if lib.versionAtLeast coq.coq-version "8.6"
then callPackage ../development/coq-modules/bignums {}