this repo has no description
1opam-version: "2.0" 2synopsis: "Monotonic wall-clock time for OCaml" 3description: """\ 4Mtime has platform independent support for monotonic wall-clock time 5in pure OCaml. This time increases monotonically and is not subject to 6operating system calendar time adjustments. The library has types to 7represent nanosecond precision timestamps and time spans. 8 9The additional Mtime_clock library provide access to a system 10monotonic clock. 11 12Mtime has a no dependency. Mtime_clock depends on your system library 13or JavaScript runtime system. Mtime and its libraries are distributed 14under the ISC license. 15 16Home page: <http://erratique.ch/software/mtime>""" 17maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 18authors: "The mtime programmers" 19license: "ISC" 20tags: ["time" "monotonic" "system" "org:erratique"] 21homepage: "https://erratique.ch/software/mtime" 22doc: "https://erratique.ch/software/mtime/doc/" 23bug-reports: "https://github.com/dbuenzli/mtime/issues" 24depends: [ 25 "ocaml" {>= "4.08.0"} 26 "ocamlfind" {build} 27 "ocamlbuild" {build & != "0.9.0"} 28 "topkg" {build & >= "1.0.3"} 29] 30build: ["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"] 31dev-repo: "git+https://erratique.ch/repos/mtime.git" 32url { 33 src: "https://erratique.ch/software/mtime/releases/mtime-2.0.0.tbz" 34 checksum: 35 "sha512=2ebec45218901c08f73420aa3318c506f155b6c0df713e9856682e59d3246696821ea477ce3682af0bf4cafd0491b1d66904f8c0256e2cf831e93a0aea322f04" 36}