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