this repo has no description
1opam-version: "2.0" 2maintainer: "vb@luminar.eu.org" 3authors: [ "Vincent Bernardoff <vb@luminar.eu.org>" 4 "Anil Madhavapeddy <anil@recoil.org>" ] 5license: "ISC" 6homepage: "https://github.com/mirage/ocaml-tuntap" 7dev-repo: "git+https://github.com/mirage/ocaml-tuntap.git" 8bug-reports: "https://github.com/mirage/ocaml-tuntap/issues" 9doc: "https://mirage.github.io/ocaml-tuntap/" 10tags: [ "org:mirage" "org:xapi-project" ] 11 12build: [ 13 ["jbuilder" "subst" "-p" name] {dev} 14 ["jbuilder" "build" "-p" name "-j" jobs] 15] 16 17depends: [ 18 "ocaml" {>= "4.04.2"} 19 "jbuilder" {>= "1.0+beta9"} 20 "ipaddr" {>= "2.4.0" & < "4.0.0"} 21 "cmdliner" 22 "ounit" {with-test} 23 "lwt" {with-test} 24] 25depexts: ["linux-headers"] {os-distribution = "alpine"} 26synopsis: "OCaml library for handling TUN/TAP devices" 27description: """ 28This is an OCaml library for handling TUN/TAP devices. TUN refers to layer 3 29virtual interfaces whereas TAP refers to layer 2 Ethernet ones. 30 31See <http://en.wikipedia.org/wiki/TUN/TAP> for more information. 32 33Linux, FreeBSD, OpenBSD and MacOS X should all be supported. You will need 34to install the third-party <http://tuntaposx.sourceforge.net/> on OSX before 35using this library. 36 37WWW: <https://github.com/mirage/ocaml-tuntap> 38Issues: <https://github.com/mirage/mirage/issues> 39E-mail: <mirageos-devel@lists.openmirage.org>""" 40url { 41 src: 42 "https://github.com/mirage/ocaml-tuntap/releases/download/v1.6.1/tuntap-1.6.1.tbz" 43 checksum: [ 44 "sha256=2203be61b0943573bb8806c914e043dbfaf8160e7bba528e4a71ddd79b6522db" 45 "md5=64ccee07531844f49acde099e556b10d" 46 ] 47}