this repo has no description
1opam-version: "2.0" 2maintainer: "Mindy Preston <meetup@yomimono.org>" 3authors: ["Mindy Preston <meetup@yomimono.org>"] 4homepage: "https://github.com/mirage/mirage-protocols" 5doc: "https://mirage.github.io/mirage-protocols/" 6license: "ISC" 7dev-repo: "git+https://github.com/mirage/mirage-protocols.git" 8bug-reports: "https://github.com/mirage/mirage-protocols/issues" 9tags: ["org:mirage"] 10 11build: [ 12 [ "dune" "subst" ] {dev} 13 [ "dune" "build" "-p" name "-j" jobs ] 14] 15 16depends: [ 17 "ocaml" {>= "4.06.0"} 18 "dune" {>= "1.0"} 19 "mirage-device" {>= "2.0.0"} 20 "mirage-flow" {>= "2.0.0"} 21 "fmt" 22 "duration" 23 "lwt" {>= "4.0.0"} 24 "ipaddr" {>= "4.0.0"} 25 "macaddr" {>= "4.0.0"} 26] 27conflicts: [ "tcpip" {>= "7.0.0"} ] 28synopsis: "MirageOS signatures for network protocols" 29description: """ 30mirage-protocols provides a set of module types which libraries intended to 31be used as MirageOS network implementations should implement. 32 33The current signatures are: ETHERNET, ARP, IP, ICMP, UDP, TCP. 34""" 35url { 36 src: 37 "https://github.com/mirage/mirage-protocols/releases/download/v4.0.1/mirage-protocols-v4.0.1.tbz" 38 checksum: [ 39 "sha256=b10e3a8f530d48e424ba089fe9e404c2e3b6f0420ea99b39a52bf0d64d4715a1" 40 "sha512=bcb2ed457fd143d4c8d13d37fd19e80764e224c0bd7c9c724ed2cd6fb535ba2dee49e39dc00f0dca22a4d55f43aa33e3a02af0451dc4f5042796f764f60e7f1c" 41 ] 42} 43flags: deprecated 44post-messages: [ "mirage-protocols is deprecated" ]