this repo has no description
1opam-version: "2.0" 2synopsis: "Xen Vchan implementation" 3description: """ 4This is an implementation of the Xen "libvchan" or "vchan" communication 5protocol in OCaml. It allows fast inter-domain communication using shared 6memory. 7""" 8maintainer: "jonathan.ludlam@eu.citrix.com" 9authors: ["Vincent Bernardoff" "Jon Ludlam" "David Scott"] 10license: "ISC" 11tags: "org:mirage" 12homepage: "https://github.com/mirage/ocaml-vchan" 13doc: "https://mirage.github.io/ocaml-vchan" 14bug-reports: "https://github.com/mirage/ocaml-vchan/issues" 15depends: [ 16 "ocaml" {>= "4.04.0"} 17 "dune" 18 "lwt" {>= "2.5.0"} 19 "cstruct" {>= "1.9.0"} 20 "ppx_tools" 21 "ppx_sexp_conv" 22 "ppx_cstruct" 23 "io-page" 24 "mirage-flow-lwt" {>= "1.0.0"} 25 "xenstore" {>= "1.2.2"} 26 "xenstore_transport" {>= "1.0.0"} 27 "sexplib" 28 "cmdliner" 29 "result" 30 "ounit" {with-test} 31] 32build: [ 33 ["dune" "subst"] {dev} 34 ["dune" "build" "-p" name "-j" jobs] 35] 36dev-repo: "git+https://github.com/mirage/ocaml-vchan.git" 37url { 38 src: 39 "https://github.com/mirage/ocaml-vchan/releases/download/v4.0.2/vchan-v4.0.2.tbz" 40 checksum: [ 41 "sha256=ee3c703ebc4e525f797aecea5a216a5cb4f2e9b52fbb78d0cdc18a6f8853ebe2" 42 "md5=59475ed6b62865d501397fc4b51e0f86" 43 ] 44}