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 ["env" "OPAM_PKG_CONFIG_PATH=%{prefix}%/lib/pkgconfig" "dune" "build" "-p" name "-j" jobs]
18 ["env" "OPAM_PKG_CONFIG_PATH=%{prefix}%/lib/pkgconfig" "dune" "runtest" "-p" name "-j" jobs] {with-test}
19]
20
21depopts: ["mirage-xen-ocaml"]
22depends: [
23 "dune" {>= "1.0"}
24 "dune-configurator"
25 "ocaml" {>= "4.03.0"}
26 "rresult" {>= "0.5.0"}
27 "cstruct" {>= "3.2.0"}
28 "cstruct-lwt"
29 "mirage-net-lwt" {>= "2.0.0"}
30 "mirage-clock" {>= "1.2.0" & < "3.0.0"}
31 "mirage-random" {>= "1.0.0" & < "2.0.0"}
32 "mirage-clock-lwt" {>= "1.2.0"}
33 "mirage-stack-lwt" {>= "1.3.0"}
34 "mirage-protocols" {>= "3.0.0" & < "3.1.0"}
35 "mirage-protocols-lwt" {>= "3.0.0" & < "3.1.0"}
36 "mirage-time-lwt" {>= "1.0.0"}
37 "ipaddr" {>= "4.0.0"}
38 "macaddr" {>= "4.0.0"}
39 "macaddr-cstruct"
40 "mirage-profile" {>= "0.5"}
41 "fmt" {>= "0.8.0"}
42 "lwt" {>= "3.0.0" & < "5.0.0"}
43 "lwt-dllist"
44 "logs" {>= "0.6.0"}
45 "duration"
46 "randomconv" {< "0.2.0"}
47 "ethernet" {>= "2.0.0" & < "3.0.0"}
48 "mirage-flow" {with-test & >= "1.2.0" & < "2.0.0"}
49 "mirage-vnetif" {with-test & >= "0.4.0"}
50 "alcotest" {with-test & >= "0.7.0" & < "1.4.0"}
51 "pcap-format" {with-test}
52 "mirage-clock-unix" {with-test & >= "1.2.0"}
53 "mirage-random-test" {with-test}
54 "arp-mirage" {with-test & >= "2.0.0"}
55 "lru" {>= "0.3.0"}
56]
57synopsis: "OCaml TCP/IP networking stack, used in MirageOS"
58description: """
59`mirage-tcpip` provides a networking stack for the [Mirage operating
60system](https://mirage.io). It provides implementations for the following module types
61(which correspond with the similarly-named protocols):
62
63* IP (via the IPv4 and IPv6 modules)
64* ICMP
65* UDP
66* TCP
67"""
68url {
69 src:
70 "https://github.com/mirage/mirage-tcpip/releases/download/v3.7.7/tcpip-v3.7.7.tbz"
71 checksum: [
72 "sha256=189933340460b4f2ac45a89160046049107768645a6924a85cf4159f6dc7bf70"
73 "sha512=cf2d06f3975cf2ac2629c046cbde6def40b27fbe58a50add8edc7feb40ffadec7cce5c65ab0b5253170c1ddc5573c61888e302cd1d00560fe61afd4eb8b4eb5b"
74 ]
75}