Commit 43aaea36 authored by Pierre Roux's avatar Pierre Roux Committed by Vincent Laporte
Browse files

coqPackages.atbr: init at 8.20.0

parent de0738a1
Loading
Loading
Loading
Loading
+21 −0
Original line number Diff line number Diff line
{ 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;
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -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 {}