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"
23 "result" {< "1.5"}
24]
25depends: [
26 "dune" {>= "2.7.0"}
27 "bisect_ppx" {dev & >= "2.5.0"}
28 "ocaml" {>= "4.08.0"}
29 "cstruct" {>= "6.0.0"}
30 "cstruct-lwt"
31 "mirage-net" {>= "3.0.0"}
32 "mirage-clock" {>= "3.0.0"}
33 "mirage-crypto-rng-mirage" {>= "1.0.0" & < "2.0.0"}
34 "mirage-time" {>= "2.0.0"}
35 "ipaddr" {>= "5.6.0"}
36 "macaddr" {>="4.0.0"}
37 "macaddr-cstruct"
38 "fmt" {>= "0.8.7"}
39 "lwt" {>= "4.0.0"}
40 "lwt-dllist"
41 "logs" {>= "0.6.0"}
42 "duration"
43 "randomconv" {>= "0.2.0"}
44 "ethernet" {>= "3.0.0"}
45 "arp" {>= "3.0.0" & < "4.0.0"}
46 "mirage-flow" {>= "4.0.0"}
47 "mirage-vnetif" {with-test & >= "0.6.2"}
48 "alcotest" {with-test & >="1.5.0"}
49 "pcap-format" {with-test}
50 "mirage-clock-unix" {with-test & >= "3.0.0"}
51 "mirage-crypto-rng" {with-test & >= "1.0.0"}
52 "ipaddr-cstruct"
53 "macaddr-cstruct"
54 "lru" {>= "0.3.0"}
55 "metrics"
56 "cmdliner" {>= "1.1.0"}
57]
58synopsis: "OCaml TCP/IP networking stack, used in MirageOS"
59description: """
60`mirage-tcpip` provides a networking stack for the [Mirage operating
61system](https://mirage.io). It provides implementations for the following module types
62(which correspond with the similarly-named protocols):
63
64* IP (via the IPv4 and IPv6 modules)
65* ICMP
66* UDP
67* TCP
68"""
69url {
70 src:
71 "https://github.com/mirage/mirage-tcpip/releases/download/v8.2.0/tcpip-8.2.0.tbz"
72 checksum: [
73 "sha256=916e688aba897676c444db8129f4963ad739f8d1be631d9e009c6228b4b7d6ed"
74 "sha512=a8f5fa8f7e96758075c93211132839950477b756fba490207a7d630f2766757bbb44bbdd02e2b1f2b4a7d83d4d8b10d34cb03903bbd516e7d7c1a9a987eb1915"
75 ]
76}
77x-commit-hash: "4646190565c59e53e091b325e26210f1dcb1f32d"
78x-ci-accept-failures: ["macos-homebrew"]