-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathmirage-net-xen.opam
36 lines (35 loc) · 1.04 KB
/
mirage-net-xen.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
36
opam-version: "2.0"
maintainer: "anil@recoil.org"
authors: ["Anil Madhavapeddy" "Thomas Leonard"]
license: "ISC"
homepage: "https://github.com/mirage/mirage-net-xen"
bug-reports: "https://github.com/mirage/mirage-net-xen/issues"
dev-repo: "git+https://github.com/mirage/mirage-net-xen.git"
doc: "https://mirage.github.io/mirage-net-xen/"
build: [
[ "dune" "subst"] {dev}
[ "dune" "build" "-p" name "-j" jobs ]
]
depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "1.0"}
"cstruct" {>= "6.0.0"}
"lwt" {>= "2.4.3"}
"mirage-net" {>= "3.0.0"}
"io-page" {>= "1.5.0"}
"mirage-xen" {>= "7.0.0"}
"ipaddr" {>= "3.0.0"}
"shared-memory-ring" {>="3.0.0"}
"macaddr" {>= "5.2.0"}
"lwt-dllist"
"logs" {>= "0.5.0"}
]
conflicts: [
"result" {< "1.5"}
]
tags: "org:mirage"
synopsis: "Network device for reading and writing Ethernet frames via then Xen netfront/netback protocol"
description: """
This library allows an OCaml application to read and
write Ethernet frames via the [Netfront/netback][xen-net] protocol.
"""