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