this repo has no description
1opam-version: "2.0"
2synopsis: """OCaml Format pretty-printer combinators"""
3maintainer: ["Daniel Bünzli <daniel.buenzl i@erratique.ch>"]
4authors: ["The fmt programmers"]
5homepage: "https://erratique.ch/software/fmt"
6doc: "https://erratique.ch/software/fmt/doc/"
7dev-repo: "git+https://erratique.ch/repos/fmt.git"
8bug-reports: "https://github.com/dbuenzli/fmt/issues"
9license: ["ISC"]
10tags: ["string" "format" "pretty-print" "org:erratique"]
11depends: ["ocaml" {>= "4.08.0" & < "5.0"}
12 "ocamlfind" {build}
13 "ocamlbuild" {build}
14 "topkg" {build & >= "1.0.3"}]
15depopts: ["base-unix"
16 "cmdliner"]
17conflicts: ["cmdliner" {< "0.9.8"}]
18build: [["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"
19 "--with-base-unix" "%{base-unix:installed}%"
20 "--with-cmdliner" "%{cmdliner:installed}%"]]
21url {
22 src: "https://erratique.ch/software/fmt/releases/fmt-0.8.10.tbz"
23 checksum: "sha512=ee35fd2d89b1efb7a59b191b07fb160dcccf0fc1d7fdee6a67508a06c39c5048ba18a210cef4b7f6e80d05e808e70fc40b6fff54ab38db3a982eb2af79e34cb7"}
24description: """
25Fmt exposes combinators to devise `Format` pretty-printing functions.
26
27Fmt depends only on the OCaml standard library. The optional `Fmt_tty`
28library that allows to setup formatters for terminal color output
29depends on the Unix library. The optional `Fmt_cli` library that
30provides command line support for Fmt depends on [`Cmdliner`][cmdliner].
31
32Fmt is distributed under the ISC license.
33
34[cmdliner]: http://erratique.ch/software/cmdliner
35
36Home page: http://erratique.ch/software/fmt"""