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