this repo has no description
1opam-version: "2.0"
2maintainer: "anil@recoil.org"
3homepage: "https://github.com/mirage/mirage-tcpip"
4dev-repo: "git+https://github.com/mirage/mirage-tcpip.git"
5bug-reports: "https://github.com/mirage/mirage-tcpip/issues"
6doc: "https://mirage.github.io/mirage-tcpip/"
7authors: [
8 "Anil Madhavapeddy" "Balraj Singh" "Richard Mortier" "Nicolas Ojeda Bar"
9 "Thomas Gazagnaire" "Vincent Bernardoff" "Magnus Skjegstad" "Mindy Preston"
10 "Thomas Leonard" "David Scott" "Gabor Pali" "Hannes Mehnert" "Haris Rotsos"
11 "Kia" "Luke Dunstan" "Pablo Polvorin" "Tim Cuthbertson" "lnmx" "pqwy" ]
12license: "ISC"
13tags: ["org:mirage"]
14
15build: [
16 ["dune" "subst"] {dev}
17 ["dune" "build" "-p" name "-j" jobs]
18 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
19]
20conflicts: [
21 "mirage-xen" {< "6.0.0"}
22 "ocaml-freestanding" {< "0.4.1"}
23]
24depends: [
25 "conf-pkg-config" {build}
26 "dune" {>= "2.7.0"}
27 "bisect_ppx" {dev & >= "2.5.0"}
28 "ocaml" {>= "4.06.0"}
29 "rresult" {>= "0.5.0"}
30 "cstruct" {>= "3.2.0" & < "6.1.0"}
31 "cstruct-lwt"
32 "ppx_cstruct"
33 "mirage-net" {>= "3.0.0"}
34 "mirage-clock" {>= "3.0.0"}
35 "mirage-random" {>= "2.0.0" & < "4.0.0"}
36 "mirage-stack" {>= "2.2.0" & < "4.0.0"}
37 "mirage-protocols" {>= "5.0.0" & < "6.0.0"}
38 "mirage-time" {>= "2.0.0"}
39 "ipaddr" {>= "5.0.0"}
40 "macaddr" {>="4.0.0"}
41 "macaddr-cstruct"
42 "mirage-profile" {>= "0.5"}
43 "fmt" {>= "0.8.0"}
44 "lwt" {>= "4.0.0"}
45 "lwt-dllist"
46 "logs" {>= "0.6.0"}
47 "duration"
48 "randomconv" {< "0.2.0"}
49 "ethernet" {>= "2.0.0" & < "3.0.0"}
50 "mirage-flow" {>= "2.0.0" & < "4.0.0"}
51 "mirage-vnetif" {with-test & >= "0.5.0" & < "0.6.2"}
52 "alcotest" {with-test & >="0.8.1"}
53 "pcap-format" {with-test}
54 "mirage-clock-unix" {with-test & >= "3.0.0"}
55 "mirage-random-test" {with-test & >= "0.1.0"}
56 "arp" {with-test & >= "2.3.0"}
57 "ipaddr-cstruct" {with-test}
58 "lru" {>= "0.3.0"}
59]
60depopts: [
61 "ocaml-freestanding"
62]
63synopsis: "OCaml TCP/IP networking stack, used in MirageOS"
64description: """
65`mirage-tcpip` provides a networking stack for the [Mirage operating
66system](https://mirage.io). It provides implementations for the following module types
67(which correspond with the similarly-named protocols):
68
69* IP (via the IPv4 and IPv6 modules)
70* ICMP
71* UDP
72* TCP
73"""
74x-commit-hash: "3b29426f616644c42df4ac3ccaeef6d4f188ff9d"
75url {
76 src:
77 "https://github.com/mirage/mirage-tcpip/releases/download/v6.2.0/tcpip-v6.2.0.tbz"
78 checksum: [
79 "sha256=d0f6e643ce04da808d5f977c5ab2422cdb4f67e7abdc46dd6776ceada7151e1b"
80 "sha512=538ac43ef232a6836c290a71b529d9805c11814968f07d392117ce5ec1a97ab498917c73fdba0d2432cf4d24d4751bd1eddadbb1035d1d40d324c7524b309d37"
81 ]
82}