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.08.0"} 11 "dune" 12 "cstruct" {>= "2.4.1"} 13 "ppx_cstruct" 14 "shared-memory-ring" {= version} 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 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 24] 25dev-repo: "git+https://github.com/mirage/shared-memory-ring.git" 26synopsis: "Shared memory rings for RPC and bytestream communications using Lwt" 27description: """ 28This package contains a set of libraries for creating shared memory 29producer/consumer rings, using the Lwt concurrency library to handle blocking. 30The rings follow the Xen ABI and may be used to create or implement Xen virtual 31devices. 32""" 33url { 34 src: 35 "https://github.com/mirage/shared-memory-ring/releases/download/v3.1.1/shared-memory-ring-3.1.1.tbz" 36 checksum: [ 37 "sha256=296f20ae28ff3809c591d51d451645db55f7f43bea6b2ce44d67912b017cba85" 38 "sha512=640e7019cafd508001966b337edeab0f59373e57543a266f81897847abbe5d46b7f4f20a5d02d894938253690ae9555b4e0a0ceeb5b052acbc4a36f7b5588d46" 39 ] 40} 41x-commit-hash: "34b981b4db5c020b2967a0397c41f642d7b07df1"