this repo has no description
1opam-version: "2.0"
2synopsis: "User-definable progress bars"
3description: """
4A progress bar library for OCaml, featuring a DSL for declaratively specifying
5progress bar formats. Supports rendering multiple progress bars simultaneously."""
6maintainer: ["Craig Ferguson <me@craigfe.io>"]
7authors: ["Craig Ferguson <me@craigfe.io>"]
8homepage: "https://github.com/CraigFe/progress"
9doc: "https://CraigFe.github.io/progress/"
10bug-reports: "https://github.com/CraigFe/progress/issues"
11depends: [
12 "dune" {>= "2.7"}
13 "ocaml" {>= "4.08.0"}
14 "mtime" {< "1.4.0"}
15 "terminal_size"
16 "alcotest" {>= "1.1.0" & with-test}
17 "astring" {with-test}
18 "fmt" {with-test}
19 "odoc" {with-doc}
20]
21build: [
22 ["dune" "subst"] {dev}
23 [
24 "dune"
25 "build"
26 "-p"
27 name
28 "-j"
29 jobs
30 "@install"
31 "@runtest" {with-test}
32 "@doc" {with-doc}
33 ]
34]
35dev-repo: "git+https://github.com/CraigFe/progress.git"
36x-commit-hash: "ec39b3ff28c153e3933920afccf5973f3bfc432d"
37url {
38 src:
39 "https://github.com/CraigFe/progress/releases/download/0.1.0/progress-0.1.0.tbz"
40 checksum: [
41 "sha256=1f101c2823d84d4dc8af693d1571ebdd614f30d675f8efeedf0d6c3018f602e2"
42 "sha512=663494ac7f4ddcbc130edc90f5ae036ec198b44f826a966fa94edee419ce7d9bb7e00a5c3996eb65b2d8213a3907a05fff60707f828102ef1e5c5133bcd78037"
43 ]
44}