this repo has no description
1opam-version: "2.0" 2maintainer: "dave@recoil.org" 3authors: [ 4 "Vincent Hanquez" "Anil Madhavapeddy" "David Scott" "Jonathan Ludlam" 5] 6tags: ["org:mirage" "org:xapi-project"] 7homepage: "https://github.com/mirage/ocaml-evtchn" 8bug-reports: "https://github.com/mirage/ocaml-evtchn/issues" 9doc: "https://mirage.github.io/ocaml-evtchn/" 10depends: [ 11 "ocaml" {>= "4.03.0"} 12 "dune" {>= "1.0"} 13 "xen-evtchn" {>="2.0.0"} 14 "lwt-dllist" 15 "lwt" 16 "cmdliner" 17 "ounit" {with-test} 18 "conf-xen" {build} 19] 20available: [ os != "freebsd" ] 21build: [ 22 ["dune" "subst"] {dev} 23 ["dune" "build" "-p" name "-j" jobs] 24] 25dev-repo: "git+https://github.com/mirage/ocaml-evtchn.git" 26synopsis: "Xen event channel interface for Linux" 27description: """ 28Event channels are the Xen equivalent of interrupts, used to signal 29when data (or space) is available for processing. This implementation 30is a binding to a set of libxc functions which access `/dev/xen/evtchn` 31for userspace. 32""" 33url { 34 src: 35 "https://github.com/mirage/ocaml-evtchn/releases/download/v2.1.0/xen-evtchn-v2.1.0.tbz" 36 checksum: [ 37 "sha256=37d49a277ec6319e74a91fb3d99ef318052f84c4a92a59d39b8d51085387fb3f" 38 "md5=5df050f2aaca4cc9d006042633277dbd" 39 ] 40} 41x-maintenance-intent: [ "(latest)" ]