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" 24 "dune-configurator" 25 "ocaml" {>= "4.06.0"} 26 "result" 27 "rresult" {>= "0.5.0"} 28 "cstruct" {>= "3.2.0" & < "6.1.0"} 29 "cstruct-lwt" 30 "mirage-net" {>= "3.0.0"} 31 "mirage-clock" {>= "3.0.0"} 32 "mirage-random" {>= "2.0.0" & < "4.0.0"} 33 "mirage-stack" {>= "2.1.0" & < "4.0.0"} 34 "mirage-protocols" {>= "4.0.0" & < "5.0.0"} 35 "mirage-time" {>= "2.0.0"} 36 "ipaddr" {>= "5.0.0"} 37 "macaddr" {>="4.0.0"} 38 "macaddr-cstruct" 39 "mirage-profile" {>= "0.5"} 40 "fmt" {>= "0.8.0"} 41 "lwt" {>= "4.0.0"} 42 "lwt-dllist" 43 "logs" {>= "0.6.0"} 44 "duration" 45 "randomconv" {< "0.2.0"} 46 "ethernet" {>= "2.0.0" & < "3.0.0"} 47 "mirage-flow" {>= "2.0.0" & < "4.0.0"} 48 "mirage-vnetif" {with-test & >= "0.5.0"} 49 "alcotest" {with-test & >="0.7.0" & < "1.4.0"} 50 "pcap-format" {with-test} 51 "mirage-clock-unix" {with-test & >= "3.0.0"} 52 "mirage-random-test" {with-test & >= "0.1.0"} 53 "arp-mirage" {with-test & >= "2.0.0"} 54 "ipaddr-cstruct" {with-test} 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""" 68x-commit-hash: "ee9b8eada14db6dac6a1bb4988ebd556df0d9083" 69url { 70 src: 71 "https://github.com/mirage/mirage-tcpip/releases/download/v5.0.1/tcpip-v5.0.1.tbz" 72 checksum: [ 73 "sha256=bc9b7238b5a8baa4d4c6a2210b85106af3193988c8229a40eaad70c6f6b4bf35" 74 "sha512=66950912ef221029c00cc15ecfdd995f55b2f549b2966af3fc5a911f597972beb2aacf4e5b686a31cd1e3e19f2183091d78b557ac9b4bdcefcd7f9561545f4bc" 75 ] 76}