-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmirage-net-macosx.opam
35 lines (32 loc) · 1.01 KB
/
mirage-net-macosx.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
opam-version: "2.0"
maintainer: "Anil Madhavapeddy <[email protected]>"
authors: "Anil Madhavapeddy <[email protected]>"
homepage: "https://github.com/mirage/mirage-net-macosx"
bug-reports: "https://github.com/mirage/mirage-net-macosx/issues"
dev-repo: "git+https://github.com/mirage/mirage-net-macosx.git"
doc: "https://mirage.github.io/mirage-net-macosx/"
license: "ISC"
build: [
[ "dune" "subst" ] {dev}
[ "dune" "build" "-p" name "-j" jobs ]
]
depends: [
"ocaml" {>= "4.06.0"}
"dune" {>= "1.0"}
"cstruct" {>= "1.4.0"}
"macaddr"
"sexplib"
"logs"
"lwt" {>= "2.4.3"}
"mirage-net" {>= "3.0.0"}
"vmnet" {>= "1.5.1"}
]
tags: "org:mirage"
synopsis: "MacOS implementation of the Mirage_net_lwt interface"
description: """
This interface exposes raw Ethernet frames using the
[Vmnet](https://github.com/mirage/ocaml-vmnet) framework that
is available on MacOS X Yosemite onwards. It is suitable for
use with an OCaml network stack such as the one found at
<https://github.com/mirage/mirage-tcpip>.
"""