this repo has no description
1opam-version: "2.0" 2maintainer: "anil@recoil.org" 3authors: [ 4 "Anil Madhavapeddy" "David Scott" "Thomas Gazagnaire" "Hannes Mehnert" 5] 6license: "ISC" 7homepage: "https://github.com/mirage/mirage-net-unix" 8doc: "https://mirage.github.io/mirage-net-unix/" 9bug-reports: "https://github.com/mirage/mirage-net-unix/issues" 10depends: [ 11 "ocaml" {>= "4.04.2"} 12 "dune" {>= "1.0"} 13 "cstruct" {>= "1.7.1" & < "6.0.0"} 14 "cstruct-lwt" 15 "lwt" {>= "2.4.3"} 16 "mirage-net-lwt" {>= "1.0.0" & < "2.0.0"} 17 "io-page-unix" {>= "2.0.0"} 18 "tuntap" {>= "1.3.0"} 19 "alcotest" {with-test} 20] 21build: [ 22 ["dune" "subst"] {dev} 23 ["dune" "build" "-p" name "-j" jobs] 24] 25dev-repo: "git+https://github.com/mirage/mirage-net-unix.git" 26synopsis: "Unix implementation of the Mirage NETWORK interface" 27description: """ 28This interface exposes raw Ethernet frames using `ocaml-tuntap`, 29suitable for use with an OCaml network stack such as the one 30found at <https://github.com/mirage/mirage-tcpip>. 31""" 32url { 33 src: 34 "https://github.com/mirage/mirage-net-unix/releases/download/v2.5.0/mirage-net-unix-v2.5.0.tbz" 35 checksum: [ 36 "sha256=b386a951a60438ea5c9fc1b1ae119eda5e62804e1fe40f7741cd8e5df7761c90" 37 "md5=d4f929a33a0c68b9613c6f3c30b44ca8" 38 ] 39}