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.0.tar.gz" 40 checksum: [ 41 "sha256=2eac90edee08153e1ce553d1d3b737bee9cbdd4358c67026fb183ebfd3e04ed3" 42 "md5=a67d42b86ac159b2f75d91b309117176" 43 ] 44}