this repo has no description
1opam-version: "2.0"
2maintainer: "dave@recoil.org"
3authors: ["Anil Madhavapeddy" "David Scott"]
4license: "ISC"
5tags: ["org:mirage" "org:xapi-project"]
6homepage: "https://github.com/mirage/shared-memory-ring"
7doc: "https://mirage.github.io/shared-memory-ring/"
8bug-reports: "https://github.com/mirage/shared-memory-ring/issues"
9depends: [
10 "ocaml" {>= "4.02.0"}
11 "dune"
12 "cstruct" {>= "2.4.1"}
13 "ppx_cstruct"
14 "shared-memory-ring"
15 "lwt"
16 "lwt-dllist"
17 "mirage-profile"
18 "ounit" {with-test}
19]
20build: [
21 ["dune" "subst"] {dev}
22 ["dune" "build" "-p" name "-j" jobs]
23]
24dev-repo: "git+https://github.com/mirage/shared-memory-ring.git"
25synopsis: "Shared memory rings for RPC and bytestream communications using Lwt"
26description: """
27This package contains a set of libraries for creating shared memory
28producer/consumer rings, using the Lwt concurrency library to handle blocking.
29The rings follow the Xen ABI and may be used to create or implement Xen virtual
30devices.
31"""
32url {
33 src:
34 "https://github.com/mirage/shared-memory-ring/releases/download/v3.1.0/shared-memory-ring-v3.1.0.tbz"
35 checksum: [
36 "sha256=a10bc183fa13bcb676cfe50cc2c6bc5ad6d9f280433f06e2f2dbb53ce0056518"
37 "md5=dba58a2c1da945028df10d34332ca7fe"
38 ]
39}