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.04.2"} 18 "dune" {>= "1.0"} 19 "mirage-device" {>= "1.0.0" & < "2.0.0"} 20 "mirage-flow" {>= "1.2.0" & < "2.0.0"} 21 "mirage-net" {>= "2.0.0" & < "3.0.0"} 22 "fmt" 23 "duration" 24] 25conflicts: [ "tcpip" {>= "7.0.0"} ] 26synopsis: "MirageOS signatures for network protocols" 27description: """ 28mirage-protocols provides a set of module types which libraries intended to 29be used as MirageOS network implementations should implement. 30 31The current signatures are: ETHERNET, ARP, IP, ICMP, UDP, TCP. 32""" 33url { 34 src: 35 "https://github.com/mirage/mirage-protocols/releases/download/v3.1.0/mirage-protocols-v3.1.0.tbz" 36 checksum: [ 37 "sha256=d4087ca630321a723509c17253e4e88a506cd18fdf8792294a1a6e022c6ac029" 38 "sha512=39959f2f573970cc4ac9069fbb264837b412ea7bf7ef2784fcef9ae7ef97907cc1638289abeb6b1064af9a8e041faef12b1ae0757824904951b635b454a618f8" 39 ] 40} 41flags: deprecated 42post-messages: [ "mirage-protocols is deprecated" ]