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.08.0"} 15 "dune" {>= "1.0"} 16 "cstruct" {>= "3.0.0" & < "6.1.0"} 17 "ppx_sexp_conv" 18 "ppx_cstruct" 19 "lwt" {>= "2.4.3"} 20 "mirage-net" {>= "3.0.0"} 21 "io-page" {>= "1.5.0"} 22 "mirage-xen" {>= "6.0.0" & < "7.0.0"} 23 "ipaddr" {>= "3.0.0"} 24 "mirage-profile" {>="0.3"} 25 "shared-memory-ring" {>="3.0.0"} 26 "sexplib" {>= "113.01.00"} 27 "logs" {>= "0.5.0"} 28 "rresult" 29] 30tags: "org:mirage" 31synopsis: "Network device for reading and writing Ethernet frames via then Xen netfront/netback protocol" 32description: """ 33This library allows an OCaml application to read and 34write Ethernet frames via the [Netfront/netback][xen-net] protocol. 35 36Note: the `Netif` module is the public API. 37The `Netchannel` API is still under development. 38""" 39x-commit-hash: "d517b5ddb84ee7954e1a28b21535a8688da6287d" 40url { 41 src: 42 "https://github.com/mirage/mirage-net-xen/releases/download/v2.0.0/mirage-net-xen-v2.0.0.tbz" 43 checksum: [ 44 "sha256=ec3906ef1804ef6a9e36b91f4ae73ce4849e9e0d1d36a80fe66b5f905fab93ad" 45 "sha512=ead53a07c482f95932c1f35f642f646b19e9415722418cce90e9d2336b77e58b0014b84a68e882721195aba758eed62cbc491bdf604e031507fd512b5c14806e" 46 ] 47} 48flags: [ deprecated ]