this repo has no description
1opam-version: "2.0" 2maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 3authors: [ "The fmt programmers" ] 4homepage: "https://erratique.ch/software/fmt" 5doc: "https://erratique.ch/software/fmt" 6dev-repo: "git+https://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.03.0" & < "5.0"} 12 "ocamlfind" {build} 13 "ocamlbuild" {build} 14 "topkg" {build & >= "0.9.0"} 15 # Can be removed once ocaml >= 4.07 16 "seq" 17 "stdlib-shims" 18] 19depopts: [ "base-unix" "cmdliner" ] 20conflicts: [ "cmdliner" {< "0.9.8"} ] 21build: [[ 22 "ocaml" "pkg/pkg.ml" "build" 23 "--dev-pkg" "%{pinned}%" 24 "--with-base-unix" "%{base-unix:installed}%" 25 "--with-cmdliner" "%{cmdliner:installed}%" ]] 26 27synopsis: """OCaml Format pretty-printer combinators""" 28description: """\ 29 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 40""" 41url { 42 src: "https://erratique.ch/software/fmt/releases/fmt-0.8.6.tbz" 43 checksum: [ 44 "sha256=36f6a18e9b7d1fc4711e9ea9ca45911bc88106b8f9a0887f5381e3fd7e2c9cca" 45 "md5=5407789e5f0ea42272ca19353b1abfd3" 46 ] 47}