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"
7dev-repo: "git+https://github.com/dsheets/ocaml-unix-errno.git"
8build: [make "build"]
9install: [make "install"]
10remove: [make "uninstall"]
11depends: [
12 "ocaml" {>= "4.01.0" & < "5.0"}
13 "ocamlfind" {build}
14 "alcotest" {with-test}
15 "base-bytes"
16 "result"
17 "ocamlbuild" {build & != "0.9.0"}
18]
19depopts: ["base-unix" "ctypes"]
20conflicts: [
21 "ctypes" {< "0.4.0"}
22 "ctypes" {>= "0.6.0"}
23]
24synopsis: "Unix errno types, maps, and support"
25description: """
26unix-errno can be used with or without ctypes and OCaml's Unix
27module. Without ctypes and Unix, the basic types and functions are
28provided as well as Errno_host containing errno maps for popular
29operating systems. The errno-srcgen tool for generating OCaml source
30representing Errno.Host.t values will also be built. With ctypes and
31Unix, you'll also receive the errno-map tool for outputting the current
32host's errno map and the Errno_unix module containing an errno global
33variable checking function and Unix.error type converters."""
34url {
35 src: "https://github.com/dsheets/ocaml-unix-errno/archive/0.3.0.tar.gz"
36 checksum: [
37 "sha256=41dcc43e45ea8fec6e645afe81c3d6d906f1b8eedcc9c4c38bb0ad38b8a7b1e6"
38 "md5=763c4fa3a29f5a22bc4ef817fa2d8fd6"
39 ]
40}