this repo has no description
1opam-version: "2.0"
2synopsis: "Bindings for posix sockets"
3description:
4 "posix-socket-unix provides unix-specific types and bindings for posix sockets."
5maintainer: ["romain.beauxis@gmail.com"]
6authors: ["Romain Beauxis"]
7license: "MIT"
8homepage: "https://github.com/savonet/ocaml-posix"
9bug-reports: "https://github.com/savonet/ocaml-posix/issues"
10depends: [
11 "dune" {> "2.5"}
12 "ctypes"
13 "posix-base" {= version}
14 "posix-socket" {= version}
15 "unix-errno"
16]
17build: [
18 ["dune" "subst"] {dev}
19 [
20 "dune"
21 "build"
22 "-p"
23 name
24 "-j"
25 jobs
26 "@install"
27 "@runtest" {with-test}
28 "@doc" {with-doc}
29 ]
30]
31dev-repo: "git+https://github.com/savonet/ocaml-posix.git"
32available: os != "win32"
33url {
34 src: "https://github.com/savonet/ocaml-posix/archive/v2.0.0.tar.gz"
35 checksum: [
36 "md5=2c186aa5161b72208a870d5710fb6208"
37 "sha512=d583c3d386865eab7575fc4f1976c17294bad2ee5037327cb5c3075965788170e652b7b9b9f660ef25f71558553fbcc47734b971e3c9f41627cc573d75d2fb54"
38 ]
39}