this repo has no description
1opam-version: "2.0" 2maintainer: "Hannes Mehnert <hannes@mehnert.org>" 3authors: ["Hannes Mehnert <hannes@mehnert.org>"] 4homepage: "https://github.com/mirage/arp" 5doc: "https://mirage.github.io/arp/" 6dev-repo: "git+https://github.com/mirage/arp.git" 7bug-reports: "https://github.com/mirage/arp/issues" 8license: "ISC" 9 10depends: [ 11 "ocaml" {>= "4.06.0"} 12 "dune" 13 "cstruct" {>= "2.2.0" & < "6.1.0"} 14 "ipaddr" {>= "4.0.0"} 15 "macaddr" {>= "4.0.0"} 16 "logs" 17 "mirage-random" {with-test & >= "2.0.0" & < "4.0.0"} 18 "mirage-random-test" {with-test & >= "0.1.0"} 19 "bisect_ppx" {with-test} 20 "alcotest" {with-test} 21] 22build: [ 23 ["dune" "subst"] {dev} 24 ["dune" "build" "-p" name "-j" jobs] 25 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 26] 27synopsis: "Address Resolution Protocol purely in OCaml" 28description: """ 29ARP is an implementation of the address resolution protocol (RFC826) purely in 30OCaml. It handles IPv4 protocol addresses and Ethernet hardware addresses only. 31""" 32url { 33 src: 34 "https://github.com/mirage/arp/releases/download/v2.2.0/arp-v2.2.0.tbz" 35 checksum: [ 36 "sha256=15c73eacfa03c5a199c8c333a2cc492c27314f749c0948418aff2a7ccc6d676c" 37 "sha512=ddf5e6ab3440095e7fb5b30262d8cd0d4d9ef0d5210bc867c28ed10ade15d43df7d14cd0559584eb834d03791469f17e3a0132bd718ea9b7f472c8b1d4662ffd" 38 ] 39}