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