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/v3.0.0/mirage-net-unix-3.0.0.tbz" 36 checksum: [ 37 "sha256=87a9ea89634d24707952c5bfa1bda1be17e030377c90dca4ed0feadee55293cc" 38 "sha512=f42039d4937e07db8a2b267b2c46ceeaeee6b621eafe1641759efa7697d07924ac833082711420aac8f3b8e7959a0093d17881b0ff3d60a3a691c2304cea6868" 39 ] 40} 41x-commit-hash: "22901f7e833837b0d72cdaf93afc9a86ae1ddd46" 42x-maintenance-intent: [ "(latest)" ]