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 & os != "macos"} 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-random" {>= "2.0.0" & < "4.0.0"} 34 "mirage-time" {>= "2.0.0"} 35 "ipaddr" {>= "5.0.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.5.0" & < "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 & >= "0.11.0" & < "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.0.2/tcpip-8.0.2.tbz" 72 checksum: [ 73 "sha256=d452e23f4e62c8b32c977f742e72c50fe673b82e23dc80b29d8263be764d2c72" 74 "sha512=9a4aeb5c7ec0392524d1d261026e5de047dec09054f2dca63d9743aed1d27ccfd655ae693554091b4ef7d9eabfeef218e71e8bf13ea8304ebedd8e8a7d4f484a" 75 ] 76} 77x-commit-hash: "463b0c2af2703de4124bb565007f33086e3cfab3"