this repo has no description
1opam-version: "2.0"
2authors: ["Anil Madhavapeddy" "Daniel C. Bünzli" "Matthew Gray"]
3maintainer: "anil@recoil.org"
4homepage: "https://github.com/mirage/mirage-clock"
5bug-reports: "https://github.com/mirage/mirage-clock/issues"
6dev-repo: "git+https://github.com/mirage/mirage-clock"
7doc: "https://mirage.github.io/mirage-clock/"
8
9license: "ISC"
10tags: ["org:mirage"]
11depends: [
12 "ocaml"
13 "ocamlfind" {build}
14 "ocamlbuild" {build}
15 "topkg" {build & >= "0.8.0"}
16 "mirage-clock" {= "1.2.0"}
17 "lwt"
18]
19build: [
20 ["ocaml" "pkg/pkg.ml" "build" "--pkg-name" name "--pinned" "%{pinned}%"]
21 [
22 "ocaml"
23 "pkg/pkg.ml"
24 "build"
25 "--pkg-name"
26 name
27 "--pinned"
28 "%{pinned}%"
29 "--tests"
30 "true"
31 ] {with-test}
32 ["ocaml" "pkg/pkg.ml" "test" "--pkg-name" name] {with-test}
33]
34synopsis: "Libraries and module types for two kinds of clocks:"
35description: """
36* clocks which give a full date and time (PCLOCK)
37* clocks which give a count of time elapsed since the clock started, guaranteed to always increase (MCLOCK)
38
39These are primarily useful in the context of Mirage projects."""
40url {
41 src:
42 "https://github.com/mirage/mirage-clock/releases/download/1.2.0/mirage-clock-lwt-1.2.0.tbz"
43 checksum: [
44 "sha256=9a89a5e141d469919d9fd32bb99b5446348063f9bd70d8f97b10475657422877"
45 "md5=e791c0a71f29c2cde9239daaa173677d"
46 ]
47}
48flags: deprecated
49post-messages: [ "mirage-clock-lwt is deprecated, and has been folded into mirage-clock" ]