this repo has no description
1opam-version: "2.0"
2synopsis: "POSIX time for OCaml"
3description: """\
4Ptime has platform independent POSIX time support in pure OCaml. It
5provides a type to represent a well-defined range of POSIX timestamps
6with picosecond precision, conversion with date-time values,
7conversion with [RFC 3339 timestamps][rfc3339] and pretty printing to
8a human-readable, locale-independent representation.
9
10The additional Ptime_clock library provides access to a system POSIX
11clock and to the system's current time zone offset.
12
13Ptime is not a calendar library.
14
15Ptime has no dependency. Ptime_clock depends on your system library or
16JavaScript runtime system. Ptime and its libraries are distributed
17under the ISC license.
18
19[rfc3339]: http://tools.ietf.org/html/rfc3339
20
21Home page: http://erratique.ch/software/ptime"""
22maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>"
23authors: "The ptime programmers"
24license: "ISC"
25tags: ["time" "posix" "system" "org:erratique"]
26homepage: "https://erratique.ch/software/ptime"
27doc: "https://erratique.ch/software/ptime/doc/"
28bug-reports: "https://github.com/dbuenzli/ptime/issues"
29depends: [
30 "ocaml" {>= "4.08.0"}
31 "ocamlfind" {build}
32 "ocamlbuild" {build & != "0.9.0"}
33 "topkg" {build & >= "1.0.3"}
34]
35build: ["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"]
36dev-repo: "git+https://erratique.ch/repos/ptime.git"
37url {
38 src: "https://erratique.ch/software/ptime/releases/ptime-1.0.0.tbz"
39 checksum:
40 "sha512=df2410d9cc25a33083fe968a584b8fb4d68ad5c077f3356da0a20427e6cd8756a5b946b921e5cf8ed4097f2c506e93345d9dca63b113be644d5a7cc0753d1534"
41}