-
Notifications
You must be signed in to change notification settings - Fork 7
/
ethernet.opam
36 lines (34 loc) · 1.2 KB
/
ethernet.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: "mirageos-devel@lists.xenproject.org"
homepage: "https://github.com/mirage/ethernet"
dev-repo: "git+https://github.com/mirage/ethernet.git"
bug-reports: "https://github.com/mirage/ethernet/issues"
doc: "https://mirage.github.io/ethernet/"
authors: [
"Anil Madhavapeddy" "Balraj Singh" "Richard Mortier" "Nicolas Ojeda Bar"
"Thomas Gazagnaire" "Vincent Bernardoff" "Magnus Skjegstad" "Mindy Preston"
"Thomas Leonard" "David Scott" "Gabor Pali" "Hannes Mehnert" "Haris Rotsos"
"Kia" "Luke Dunstan" "Pablo Polvorin" "Tim Cuthbertson" "lnmx" "pqwy" ]
license: "ISC"
tags: ["org:mirage"]
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"dune" {>= "1.0"}
"ocaml" {>= "4.08.0"}
"cstruct" {>= "6.0.0"}
"mirage-net" {>= "3.0.0"}
"macaddr" {>= "4.0.0"}
"lwt" {>= "3.0.0"}
"logs" {>= "0.6.0"}
]
conflicts: [ "result" {< "1.5"} ]
synopsis: "OCaml Ethernet (IEEE 802.3) layer, used in MirageOS"
description: """
`ethernet` provides an [Ethernet](https://en.wikipedia.org/wiki/Ethernet)
(specified by IEEE 802.3) layer implementation for the
[Mirage operating system](https://mirage.io).
"""
x-maintenance-intent: [ "(latest)" ]