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.06.0"} 12 "dune" {>= "1.0"} 13 "cstruct" {>= "1.7.1"} 14 "cstruct-lwt" 15 "lwt" {>= "2.4.3"} 16 "mirage-net" {>= "3.0.0"} 17 "tuntap" {>= "1.8.0"} 18 "alcotest" {with-test} 19 "logs" 20 "macaddr" 21] 22build: [ 23 ["dune" "subst"] {dev} 24 ["dune" "build" "-p" name "-j" jobs] 25] 26dev-repo: "git+https://github.com/mirage/mirage-net-unix.git" 27synopsis: "Unix implementation of the Mirage_net_lwt interface" 28description: """ 29This interface exposes raw Ethernet frames using `ocaml-tuntap`, 30suitable for use with an OCaml network stack such as the one 31found at <https://github.com/mirage/mirage-tcpip>. 32""" 33url { 34 src: 35 "https://github.com/mirage/mirage-net-unix/releases/download/v2.7.0/mirage-net-unix-v2.7.0.tbz" 36 checksum: [ 37 "sha256=7487ddec3c597133b39b2070276999130ff9fc93742ffa6de670c2851f52b33a" 38 "sha512=e73afd9947fac68255586f6d3093ef5788391d58c14721fc06afc4175d4fb727e921e63ee9d12fcd65bd26e243ad7db3e63275a3b68821fe9b4c89efc2a11a79" 39 ] 40}