this repo has no description
1opam-version: "2.0" 2maintainer: "sheets@alum.mit.edu" 3authors: "David Sheets" 4homepage: "https://github.com/dsheets/ocaml-unix-time" 5bug-reports: "https://github.com/dsheets/ocaml-unix-time/issues" 6license: "ISC" 7tags: ["unix" "posix" "time.h" "tm" "timespec"] 8dev-repo: "git+https://github.com/dsheets/ocaml-unix-time.git" 9build: [ 10 [make "build"] 11 [make "test"] {with-test} 12] 13install: [make "install"] 14remove: [make "uninstall"] 15depends: [ 16 "ocaml" 17 "ocamlfind" {build} 18 "ocamlbuild" {build} 19 "alcotest" {with-test} 20 "unix-errno" {>= "0.4.0" & < "0.6.0"} 21 "ctypes" 22] 23depopts: "base-unix" 24conflicts: [ 25 "ctypes" {< "0.4.0"} 26] 27synopsis: "Unix time.h types, maps, and support" 28description: """ 29unix-time provides access to the features exposed in time.h in a way 30that is not tied to the implementation on the host system. 31 32The Time module provides types which are analogous to those defined in 33time.h such as timespec. 34 35The Time_unix module provides a ctypes view for timespec.""" 36url { 37 src: "https://github.com/dsheets/ocaml-unix-time/archive/0.1.0.tar.gz" 38 checksum: [ 39 "sha256=71cff11c95a9d6d341db52bc1175b975f4b98f47760e0bdd05a6945be0b928c9" 40 "md5=e53ba3b7ffee0605dc7975b7269f9efe" 41 ] 42}