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" {>= "2.7.0"} 13 "cstruct" {>= "6.0.0"} 14 "ipaddr" {>= "4.0.0"} 15 "macaddr" {>= "4.0.0"} 16 "logs" 17 "mirage-time" {>= "2.0.0"} 18 "lwt" 19 "duration" 20 "mirage-profile" {>= "0.9"} 21 "ethernet" {>= "3.0.0"} 22 "bisect_ppx" {dev & >= "2.5.0"} 23 "mirage-random" {with-test & >= "2.0.0" & < "4.0.0"} 24 "mirage-random-test" {with-test & >= "0.1.0"} 25 "alcotest" {with-test} 26 "fmt" {with-test & >= "0.8.7"} 27 "mirage-vnetif" {with-test & >= "0.5.0"} 28 "mirage-clock-unix" {with-test & >= "3.0.0"} 29 "mirage-time-unix" {with-test & >= "2.0.0"} 30 "mirage-flow" {with-test & >= "2.0.1"} 31] 32build: [ 33 ["dune" "subst"] {dev} 34 ["dune" "build" "-p" name "-j" jobs] 35 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 36] 37synopsis: "Address Resolution Protocol purely in OCaml" 38description: """ 39ARP is an implementation of the address resolution protocol (RFC826) purely in 40OCaml. It handles IPv4 protocol addresses and Ethernet hardware addresses only. 41""" 42url { 43 src: 44 "https://github.com/mirage/arp/releases/download/v3.0.0/arp-v3.0.0.tbz" 45 checksum: [ 46 "sha256=f66bc9b03fa5ff66459ce63be0a223573d85160112b8c559e683716fd24674f4" 47 "sha512=52eb9fdb00729a5b6c1d7dd9d14fca213aecddc6e2893c0e670dea3b31576e6765061f557b6521a065ed15a931f4cbbf432b4db8fe53df40dc801695acd242d4" 48 ] 49} 50x-commit-hash: "7222488873ae6d54233480322cb2f92a8df312ba"