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"} 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.9.0.tbz" 23 checksum: "sha512=66cf4b8bb92232a091dfda5e94d1c178486a358cdc34b1eec516d48ea5acb6209c0dfcb416f0c516c50ddbddb3c94549a45e4a6d5c5fd1c81d3374dec823a83b"} 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""" 37x-maintenance-intent: ["(latest)"]