this repo has no description
1opam-version: "2.0" 2maintainer: "anil@recoil.org" 3authors: ["Anil Madhavapeddy" "Thomas Leonard"] 4homepage: "https://github.com/mirage/mirage-net-xen" 5bug-reports: "https://github.com/mirage/mirage-net-xen/issues" 6dev-repo: "git+https://github.com/mirage/mirage-net-xen.git" 7doc: "https://mirage.github.io/mirage-net-xen/" 8build: [ 9 ["dune" "subst"] {dev} 10 [ "dune" "build" "-p" name "-j" jobs ] 11] 12 13depends: [ 14 "ocaml" {>= "4.04.0"} 15 "dune" {>= "1.0"} 16 "cstruct" {>= "3.0.0"} 17 "ppx_sexp_conv" 18 "ppx_cstruct" 19 "lwt" {>= "2.4.3"} 20 "mirage-net-lwt" {>= "2.0.0"} 21 "io-page" {>= "1.5.0"} 22 "io-page-xen" {>= "2.0.0"} 23 "mirage-xen" {>= "4.0.0" & < "5.0.0"} 24 "ipaddr" {>= "3.0.0"} 25 "mirage-profile" {>= "0.3"} 26 "shared-memory-ring" {>= "3.0.0"} 27 "sexplib" {>= "113.01.00"} 28 "logs" {>= "0.5.0"} 29 "rresult" 30] 31tags: "org:mirage" 32synopsis: "Network device for reading and writing Ethernet frames via then Xen netfront/netback protocol" 33description: """ 34This library allows an OCaml application to read and 35write Ethernet frames via the [Netfront/netback][xen-net] protocol. 36 37Note: the `Netif` module is the public API. 38The `Netchannel` API is still under development. 39""" 40url { 41 src: 42 "https://github.com/mirage/mirage-net-xen/releases/download/v1.12.0/mirage-net-xen-v1.12.0.tbz" 43 checksum: [ 44 "sha256=84c0a40e7530962d8c345853531f7d95b1c10df3d7713d3f082078c302d5dca1" 45 "sha512=328d63788c7ce34c9fdf191535b4b499c74c75dbfdefb8a2115b1fe773fbfe7f06ea88bca2e9122ee026cec6517ed782a37573f22ecc46f917723cd7384c8c63" 46 ] 47}