this repo has no description
1opam-version: "2.0" 2maintainer: "Magnus Skjegstad <magnus@skjegstad.com>" 3authors: "Magnus Skjegstad <magnus@skjegstad.com>" 4homepage: "https://github.com/mirage/mirage-vnetif" 5bug-reports: "https://github.com/mirage/mirage-vnetif/issues/" 6dev-repo: "git+https://github.com/mirage/mirage-vnetif.git" 7doc: "https://mirage.github.io/mirage-vnetif/" 8license: "ISC" 9 10build: [ 11 ["dune" "subst"] {dev} 12 ["dune" "build" "-p" name "-j" jobs] 13] 14 15depends: [ 16 "ocaml" {>= "4.04.2"} 17 "dune" {>= "1.0"} 18 "lwt" 19 "mirage-time-lwt" {>= "1.0.0"} 20 "mirage-clock-lwt" {>= "1.2.0"} 21 "mirage-net-lwt" {>= "2.0.0"} 22 "cstruct" {>="2.4.0" & < "6.1.0"} 23 "ipaddr" {>= "3.0.0"} 24 "macaddr" 25 "mirage-profile" 26 "duration" 27 "logs" 28 "result" 29] 30tags: ["org:mirage"] 31synopsis: "Virtual network interface and software switch for Mirage" 32description: """ 33Provides the module `Vnetif` which can be used as a replacement for the regular 34`Netif` implementation in Xen and Unix. Stacks built using `Vnetif` are 35connected to a software switch that allows the stacks to communicate as if they 36were connected to the same LAN. 37""" 38url { 39 src: 40 "https://github.com/mirage/mirage-vnetif/releases/download/v0.4.2/mirage-vnetif-v0.4.2.tbz" 41 checksum: [ 42 "sha256=3aa8e1a1ea63fe66e8cda551671c6389ed2595d176fdf4246f2f38f3175f65c0" 43 "md5=196f5e1cadb53a16d29d3b9c89c65bc4" 44 ] 45}