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" & < "6.1.0"} 13 "ppx_cstruct" {>= "3.2.0"} 14 "mirage-profile" 15 "ounit" {with-test} 16] 17build: [ 18 ["dune" "subst"] {dev} 19 ["dune" "build" "-p" name "-j" jobs] 20] 21dev-repo: "git+https://github.com/mirage/shared-memory-ring.git" 22synopsis: "Shared memory rings for RPC and bytestream communications" 23description: """ 24This package contains a set of libraries for creating shared memory 25producer/consumer rings. The rings follow the Xen ABI and may be used 26to create or implement Xen virtual devices. 27 28Example use: 29 30One program wishes to create data records and push them efficiently 31to a second process on the same physical machine for 32sampling/analysis/archiving. 33 34Example use: 35 36A Xen virtual machine wishes to send and receive network packets to 37and from a backend driver domain. 38""" 39url { 40 src: 41 "https://github.com/mirage/shared-memory-ring/releases/download/v3.1.0/shared-memory-ring-v3.1.0.tbz" 42 checksum: [ 43 "sha256=a10bc183fa13bcb676cfe50cc2c6bc5ad6d9f280433f06e2f2dbb53ce0056518" 44 "md5=dba58a2c1da945028df10d34332ca7fe" 45 ] 46}