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