this repo has no description
1opam-version: "2.0" 2synopsis: "Unix errno types, maps, and support" 3description: """\ 4unix-errno can be used with or without ctypes and OCaml's Unix 5module. Without ctypes and Unix, the basic types and functions are 6provided as well as Errno_host containing errno maps for popular 7operating systems. The errno-srcgen tool for generating OCaml source 8representing Errno.Host.t values will also be built. With ctypes and 9Unix, you'll also receive the errno-map tool for outputting the current 10host's errno map and the Errno_unix module containing an errno global 11variable checking function and Unix.error type converters.""" 12maintainer: "Xapi Project" 13authors: "David Sheets <sheets@alum.mit.edu>" 14license: "ISC" 15tags: ["errno" "errno.h" "errors" "unix" "syscall"] 16homepage: "https://github.com/xapi-project/ocaml-unix-errno" 17bug-reports: "https://github.com/xapi-project/ocaml-unix-errno/issues" 18depends: [ 19 "ocaml" {>= "4.03.0"} 20 "dune" {>= "2.8"} 21 "alcotest" {with-test} 22 "result" 23 "ctypes" {>= "0.12.0"} 24 "integers" 25] 26build: [ 27 ["dune" "subst"] {dev} 28 ["dune" "build" "-p" name "-j" jobs] 29 ["dune" "build" "-p" name "-j" jobs "@runtest"] {with-test} 30] 31dev-repo: "git+https://github.com/xapi-project/ocaml-unix-errno.git" 32url { 33 src: 34 "https://github.com/xapi-project/ocaml-unix-errno/releases/download/0.6.2/unix-errno-0.6.2.tbz" 35 checksum: [ 36 "sha256=2d6a9bc86731b3a7ff15c38fa3725847753e00bd091de5828868ee621c71ad65" 37 "sha512=3f820834fe4dcc246e777a3e4b9d19c85dcccf87aa77b7b9e3a59e5080f6094dc059d5d035831e82cc3efc4c20065422e3299cb44ff49674b7b0a3139fd15ba7" 38 ] 39} 40x-commit-hash: "c91d9ac97e33f7df0d63f95110130130d040c6ce"