package forester

  1. Overview
  2. Docs
A tool for tending mathematical forests

Install

Dune Dependency

Authors

Maintainers

Sources

3.0.0.tar.gz
md5=cefb2772a2562267fc46aab3e7b1fb82
sha512=e890a08344dff37e893d36e196452df1a9b560fe2a0abd23988ec4f3c8df9b9757d1c976dec5d95b9b5ab61c125928f5017e458802cfe93f728de4b2711b893b

Description

Published: 29 Dec 2023

README

README.md

This is the source repository for the forester tool, which is implemented in the OCaml programming language. Please see this page for more information.

System Requirements

You need to have OCaml 5 and opam installed.

Installation

You can install forester by running opam install forester.

Using nix (Optional)

Forester can also be used with nix. To run forester, use nix run sourcehut:~jonsterling/ocaml-forester. If you are working with a Nix flake-based project and want to include Forester as a build input, you can add it to your flake.nix:

{
  inputs = {
    forester.url = "sourcehut:~jonsterling/ocaml-forester";
    forester.inputs.nixpkgs.follows = "nixpkgs";
  };

  outputs = inputs@{ self, forester, nixpkgs }:
    let
      system = "x86_64-linux"; # make sure to change this to your use case!
      pkgs = import nixpkgs { inherit system inputs; };
    in
    {
      devShells.${system}.default = pkgs.mkShell {
        buildInputs = [ forester.packages.${system}.default ];
      };
    };
}

Example Use

Please see my Forest for an example of using forester, or clone your own template forest.

Dependencies (14)

  1. algaeff >= "2.0.0"
  2. bwd >= "2.3.0"
  3. yuujinchou >= "5.1.0"
  4. asai >= "0.2.0"
  5. ptime >= "1.1.0"
  6. eio_main >= "0.13"
  7. dune-build-info
  8. cmdliner >= "1.2.0"
  9. ppx_deriving
  10. xmlm >= "1.4.0"
  11. dune >= "3.7"
  12. ocaml >= "5.0.0"
  13. ocamlgraph >= "2.1.0"
  14. menhir >= "20211230"

Dev Dependencies (1)

  1. odoc with-doc

Used by

None

Conflicts

None