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.08.0"}
17 "dune"
18 "lwt" {>= "2.5.0"}
19 "cstruct" {>= "1.9.0" & < "6.1.0"}
20 "ppx_sexp_conv"
21 "ppx_cstruct"
22 "io-page"
23 "mirage-flow" {>= "2.0.0" & < "4.0.0"}
24 "xenstore" {>= "1.2.2"}
25 "xenstore_transport" {>= "1.0.0"}
26 "sexplib"
27 "cmdliner"
28 "ounit" {with-test}
29 "io-page-unix" {with-test}
30]
31build: [
32 ["dune" "subst"] {dev}
33 ["dune" "build" "-p" name "-j" jobs]
34 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
35]
36dev-repo: "git+https://github.com/mirage/ocaml-vchan.git"
37x-commit-hash: "69de0287d4eb732b42873f10c346f8473032591f"
38url {
39 src:
40 "https://github.com/mirage/ocaml-vchan/releases/download/v6.0.0/vchan-v6.0.0.tbz"
41 checksum: [
42 "sha256=7a6cc89ff8ba7144d6cef3f36722f40deedb3cefff0f7be1b2f3b7b2a2b41747"
43 "sha512=0df7879cead12d37d7a16cc21af839fc26ba16532ced69313bb3b153f187e5f4586c8e34d59ee51265500e0f50febc1b8c01f9ba3703ddd18b6851f02f52c43a"
44 ]
45}