this repo has no description
1opam-version: "2.0"
2maintainer: "thomas@gazagnaire.org"
3homepage: "https://github.com/mirage/mirage-net"
4bug-reports: "https://github.com/mirage/mirage-net/issues"
5dev-repo: "git+https://github.com/mirage/mirage-net.git"
6doc: "https://mirage.github.io/mirage-net/"
7authors: ["Thomas Gazagnaire" "Anil Madhavapeddy" "Gabriel Radanne"
8 "Mindy Preston" "Thomas Leonard" "Nicolas Ojeda Bar"
9 "Dave Scott" "David Kaloper" "Hannes Mehnert" "Richard Mortier"]
10tags: [ "org:mirage"]
11license: "ISC"
12
13build: [
14 ["jbuilder" "subst" "-p" name] {dev}
15 ["jbuilder" "build" "-p" name "-j" jobs]
16]
17
18depends: [
19 "ocaml" {>= "4.04.2"}
20 "jbuilder" {>= "1.0+beta7"}
21 "topkg" {build & >= "0.8.0"}
22 "mirage-net" {>= "1.0.0" & < "2.0.0"}
23 "lwt"
24 "macaddr"
25 "cstruct"
26 "io-page"
27]
28synopsis: "Network signatures for MirageOS"
29description: """\
30
31mirage-net defines [Mirage_net.S][1] the signature for
32network operations for MirageOS.
33
34[1]: https://mirage.github.io/mirage-net/Mirage_net.S.html
35
36### Installation
37
38`mirage-net` can be installed with `opam`:
39
40 opam install mirage-net
41
42If you don't use `opam` consult the [`opam`](opam) file for build
43instructions.
44
45### Documentation
46
47The documentation and API reference is automatically generated by
48`ocamldoc` from the interfaces. It can be consulted [online][2].
49
50[2]: https://mirage.github.io/mirage-net/Mirage_net.html"""
51url {
52 src:
53 "https://github.com/mirage/mirage-net/releases/download/v1.2.0/mirage-net-1.2.0.tbz"
54 checksum: [
55 "sha256=5e75a9424ac0284165208a3a69815d4de0ad5398fad37329233ac35292b664ae"
56 "md5=b034a75fd5c9a4c0f3d3e1937e1664d4"
57 ]
58}
59flags: deprecated
60post-messages: [ "mirage-net-lwt is deprecated, and has been folded into mirage-net" ]