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 ["jbuilder" "subst" "-p" name] {dev} 12 ["jbuilder" "build" "-p" name "-j" jobs] 13 ["jbuilder" "subst" "-p" name] {with-test & pinned} 14 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test} 15] 16depends: [ 17 "ocaml" {>= "4.03.0"} 18 "base-bytes" 19 "base-threads" 20 "base-unix" 21 "lwt" {>= "3.2.0"} 22 "logs" 23 "fmt" 24 "cmdliner" 25 "mirage-flow-lwt" {>= "1.2.0"} 26 "mirage-time-lwt" {>= "1.0.0"} 27 "cstruct" {>= "2.4.0"} 28 "duration" 29 "jbuilder" {>= "1.0+beta10"} 30 "alcotest" {with-test & >= "0.4.0"} 31] 32synopsis: "Bindings for Hyper-V AF_VSOCK" 33description: """ 34[![Build Status (Linux)](https://travis-ci.org/mirage/ocaml-hvsock.svg)](https://travis-ci.org/mirage/ocaml-hvsock) 35[![Build status (Windows)](https://ci.appveyor.com/api/projects/status/974tsg317b4k8xra?svg=true)](https://ci.appveyor.com/project/mirage/ocaml-hvsock/branch/master) 36 37These bindings allow Host <-> VM communication on Hyper-V systems on both Linux 38and Windows. 39 40*Warning*: the `AF_HYPERV` patches for Linux are not yet merged and hence the 41definition of `AF_HYPERV` is not yet stable. If other address families are merged 42before this one then the value of `AF_HYPERV` will change! 43 44Please read [the API documentation](https://djs55.github.io/ocaml-hvsock/index.html).""" 45url { 46 src: "https://github.com/mirage/ocaml-hvsock/archive/1.0.2.tar.gz" 47 checksum: [ 48 "sha256=93e9bba076c30b9a09b96b1a81a7d7fe9361bbcf713980d0a510cae7c65dbfe0" 49 "md5=d3ec27d96076075a6d2f949cc8ef3d32" 50 ] 51}