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 "configurator" {build} 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" {>= "2.0.0" & < "3.0.0"} 35 "mirage-protocols-lwt" {>= "2.0.0" & < "3.0.0"} 36 "mirage-time-lwt" {>= "1.0.0"} 37 "ipaddr" {>= "3.0.0"} 38 "macaddr" {< "4.0.0"} 39 "mirage-profile" {>= "0.5"} 40 "fmt" {>= "0.8.0"} 41 "lwt" {>= "3.0.0" & < "5.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" {with-test & >= "1.2.0" & < "2.0.0"} 48 "mirage-vnetif" {with-test & >= "0.4.0"} 49 "alcotest" {with-test & >= "0.7.0" & < "1.4.0"} 50 "pcap-format" {with-test} 51 "mirage-clock-unix" {with-test & >= "1.2.0"} 52 "mirage-random-test" {with-test} 53 "arp-mirage" {with-test & >= "2.0.0"} 54 "lru" {>= "0.3.0"} 55] 56synopsis: "OCaml TCP/IP networking stack, used in MirageOS" 57description: """ 58`mirage-tcpip` provides a networking stack for the [Mirage operating 59system](https://mirage.io). It provides implementations for the following module types 60(which correspond with the similarly-named protocols): 61 62* IP (via the IPv4 and IPv6 modules) 63* ICMP 64* UDP 65* TCP 66""" 67url { 68 src: 69 "https://github.com/mirage/mirage-tcpip/releases/download/v3.7.5/tcpip-v3.7.5.tbz" 70 checksum: [ 71 "sha256=1d5a567c47cec52764f639ba9f5b09af43a732008e1004cae29b093618f634f0" 72 "sha512=642e31adefe782a15d1526487460570444508b27a0361e4637ea81603b14d9a097250530fc15d8f7f92e7a7b4282c435e4dbf37dafb65d1a38eb7a3b321e8ab4" 73 ] 74}