this repo has no description
1opam-version: "2.0"
2maintainer: "dave@recoil.org"
3authors: [ "David Scott" "Rolf Neugebauer" "Anil Madhavapeddy" "Simon Ferquel"]
4license: "ISC"
5homepage: "https://github.com/mirage/ocaml-hvsock"
6dev-repo: "git+https://github.com/mirage/ocaml-hvsock.git"
7bug-reports: "https://github.com/mirage/ocaml-hvsock/issues"
8doc: "https://mirage.github.io/ocaml-hvsock"
9
10build: [
11 [ "dune" "subst" ] {dev}
12 [ "dune" "build" "-p" name "-j" jobs ]
13]
14
15depends: [
16 "ocaml" {>= "4.03.0"}
17 "base-bytes"
18 "base-threads"
19 "base-unix"
20 "lwt" {>= "3.2.0"}
21 "logs"
22 "fmt"
23 "cmdliner" {< "1.1.0"}
24 "sha"
25 "uri"
26 "base64" {>= "3.0.0"}
27 "uuidm"
28 "uutf"
29 "mirage-flow-lwt" {>= "1.2.0"}
30 "mirage-time-lwt" {>= "1.0.0"}
31 "cstruct" {>= "2.4.0"}
32 "duration"
33 "dune" {>= "1.2.0"}
34 "alcotest" {with-test & >= "0.4.0"}
35]
36depexts: [
37 ["linux-headers"] {os-distribution = "alpine"}
38 ["linux-libc-dev"] {os-family = "debian"}
39 ["kernel-headers"] {os-distribution = "fedora"}
40 ["kernel-headers"] {os-distribution = "rhel"}
41]
42synopsis: "Bindings for Hyper-V AF_VSOCK"
43description: """
44[](https://travis-ci.org/mirage/ocaml-hvsock)
45[](https://ci.appveyor.com/project/mirage/ocaml-hvsock/branch/master)
46
47These bindings allow Host <-> VM communication on Hyper-V systems on both Linux
48and Windows.
49
50*Warning*: the `AF_HYPERV` patches for Linux are not yet merged and hence the
51definition of `AF_HYPERV` is not yet stable. If other address families are merged
52before this one then the value of `AF_HYPERV` will change!
53
54Please read [the API documentation](https://djs55.github.io/ocaml-hvsock/index.html)."""
55url {
56 src: "https://github.com/mirage/ocaml-hvsock/archive/2.0.0.tar.gz"
57 checksum: [
58 "sha256=e94afeaa1a8bdb8ea7e5b30ffc8ed476e5999c668a48e8c8e49a6a97ceda6cc9"
59 "md5=b5512ca72cbbd01d6e756264d6114020"
60 ]
61}