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