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