this repo has no description
1opam-version: "2.0"
2maintainer: "sheets@alum.mit.edu"
3authors: "David Sheets"
4homepage: "https://github.com/dsheets/ocaml-unix-errno"
5bug-reports: "https://github.com/dsheets/ocaml-unix-errno/issues"
6license: "ISC"
7tags: ["errno" "errno.h" "errors" "unix" "syscall"]
8dev-repo: "git+https://github.com/dsheets/ocaml-unix-errno.git"
9build: [
10 [make "build"]
11 [make "test"] {with-test}
12]
13install: [make "install"]
14remove: [make "uninstall"]
15depends: [
16 "ocaml" {>= "4.01.0" & < "5.0"}
17 "ocamlfind" {build}
18 "ocamlbuild" {build & != "0.9.0"}
19 "alcotest" {with-test}
20 "base-bytes"
21 "result"
22 "ctypes" {< "0.18.0"}
23]
24depopts: ["base-unix"]
25conflicts: [
26 "ctypes" {< "0.7.0"}
27]
28synopsis: "Unix errno types, maps, and support"
29description: """
30unix-errno can be used with or without ctypes and OCaml's Unix
31module. Without ctypes and Unix, the basic types and functions are
32provided as well as Errno_host containing errno maps for popular
33operating systems. The errno-srcgen tool for generating OCaml source
34representing Errno.Host.t values will also be built. With ctypes and
35Unix, you'll also receive the errno-map tool for outputting the current
36host's errno map and the Errno_unix module containing an errno global
37variable checking function and Unix.error type converters."""
38url {
39 src: "https://github.com/dsheets/ocaml-unix-errno/archive/0.5.1.tar.gz"
40 checksum: [
41 "sha256=9929b4f181b84c7d30dbdfe1dd2326774c8be120a3942c9c3082dc9fa926a4ee"
42 "md5=0cd758c1dc9a3eebad87b9b7611effb7"
43 ]
44}