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.05.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"} ]
21available: arch != "arm32" & arch != "x86_32"
22build: [[
23 "ocaml" "pkg/pkg.ml" "build"
24 "--dev-pkg" "%{pinned}%"
25 "--with-base-unix" "%{base-unix:installed}%"
26 "--with-cmdliner" "%{cmdliner:installed}%" ]]
27
28synopsis: """OCaml Format pretty-printer combinators"""
29description: """\
30
31Fmt exposes combinators to devise `Format` pretty-printing functions.
32
33Fmt depends only on the OCaml standard library. The optional `Fmt_tty`
34library that allows to setup formatters for terminal color output
35depends on the Unix library. The optional `Fmt_cli` library that
36provides command line support for Fmt depends on [`Cmdliner`][cmdliner].
37
38Fmt is distributed under the ISC license.
39
40[cmdliner]: http://erratique.ch/software/cmdliner
41"""
42url {
43 src: "https://erratique.ch/software/fmt/releases/fmt-0.8.7.tbz"
44 checksum: [
45 "sha256=6fa4b19dd6020db573d2de84ffec0258d010b7a7d307c45cba71d7fa6a90a646"
46 "md5=c317aa285fe13732cd1f27674f974357"
47 ]
48}