this repo has no description
1opam-version: "2.0" 2synopsis: 3 "Ctypes bindings to unix-specific low-level socket structure and data-types" 4description: """ 5This module provides OCaml ctypes bindings to system-specific low-level socket 6structure and data-types. 7 8The interface is implemented using ocaml-ctypes and in intended to exposed the 9machine-specific, low-level details of the most important parts of socket 10implementations. 11 12This package provides the part of the API that is specific to Unix systems.""" 13maintainer: "Romain Beauxis <toots@rastageeks.org>" 14authors: "Romain Beauxis <toots@rastageeks.org>" 15license: "MIT" 16homepage: "https://github.com/toots/ocaml-sys-socket" 17bug-reports: "https://github.com/toots/ocaml-sys-socket/issues" 18depends: [ 19 "ocaml" 20 "dune" {>= "1.10"} 21 "ctypes" 22 "unix-errno" 23 "sys-socket" 24] 25available: os != "win32" 26build: ["dune" "build" "-p" name "-j" jobs] 27dev-repo: "git+https://github.com/toots/ocaml-sys-socket.git" 28messages: [ 29 "DEPRECATED. This package is outdated, you should consider using posix-socket-unix instead" {installed} 30] 31url { 32 src: "https://github.com/toots/ocaml-sys-socket/archive/1.0.0.tar.gz" 33 checksum: [ 34 "md5=2ecd4e009ed19e4d961d9b8a4a09f546" 35 "sha512=2fbfd846baebd259a8486be2af856569ee6f056298e8cf5874ba76f5c207626cc5854abe2e091d670f9bb605eeb19a416e47b3c8474b8cbc5957f6293b3ccddb" 36 ] 37}