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"}
20 "dune" {>= "2.8"}
21 "alcotest" {with-test}
22 "base-bytes"
23 "integers"
24 "result"
25 "ctypes" {>= "0.12.0" & < "0.21.0"}
26]
27depopts: ["base-unix"]
28build: [
29 ["dune" "subst"] {dev}
30 ["dune" "build" "-p" name "-j" jobs]
31 ["dune" "build" "-p" name "-j" jobs "@runtest"] {with-test}
32]
33available: arch != "arm32"
34dev-repo: "git+https://github.com/xapi-project/ocaml-unix-errno.git"
35url {
36 src:
37 "https://github.com/xapi-project/ocaml-unix-errno/releases/download/v0.6.0/unix-errno-0.6.0.tbz"
38 checksum: [
39 "sha256=044d962f1169a9357c7913966b58a07f095a670676b6fae0b85cdb6b11c03584"
40 "sha512=2c6c8d76bafe169b7921c53a3e734bc4fd0c91af13a2670d0ea1eda3f9f6d3237795b1d16b0a1c812209834f2f868ff13adfcc50afc0eb59ea3ea640547121cb"
41 ]
42}
43x-commit-hash: "170b9aaef6143ef1b3b6b99d1d17078c58b9863a"