package forester

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

Install

Dune Dependency

Authors

Maintainers

Sources

4.0.0.tar.gz
md5=e6fc311885219d11faae87be4918566d
sha512=9e262f964d36404228f3f82eab803be126be247507c774ce417ce2ef652a8a0220da3e6446f971725a8080ba98c9679fd77e87956155af19c21b2925b2195e90

Description

Published: 12 Apr 2024

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. For the current prerelease, you must first pin an unreleased version of dream-html; we will wait until the latter is released until we release a new version of Forester.

opam pin add dream-html git+https://github.com/yawaramin/dream-html
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 (17)

  1. toml >= "7.1.0"
  2. dream-html >= "3.3.1"
  3. yojson >= "2.1.2"
  4. algaeff >= "2.0.0"
  5. bwd >= "2.3.0"
  6. yuujinchou >= "5.2.0"
  7. asai >= "0.2.0"
  8. ptime >= "1.1.0"
  9. eio_main >= "1.0"
  10. uucp >= "15.1.0"
  11. dune-build-info
  12. cmdliner >= "1.2.0"
  13. ppx_deriving
  14. dune >= "3.7"
  15. ocaml >= "5.0.0"
  16. ocamlgraph >= "2.1.0"
  17. menhir >= "20211230"

Dev Dependencies (1)

  1. odoc with-doc

Used by

None

Conflicts

None