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" 9depends: [ 10 "ocaml" {>= "4.06.0"} 11 "dune" {>= "2.7.0"} 12 "cstruct" {>= "6.0.0"} 13 "ipaddr" {>= "4.0.0"} 14 "macaddr" {>= "4.0.0"} 15 "logs" 16 "mirage-time" {>= "2.0.0"} 17 "lwt" 18 "duration" 19 "ethernet" {>= "3.0.0"} 20 "fmt" {>= "0.8.7"} 21 "alcotest" {with-test} 22 "mirage-vnetif" {with-test & >= "0.5.0"} 23 "mirage-time-unix" {with-test & >= "2.0.0"} 24] 25build: [ 26 ["dune" "subst"] {dev} 27 ["dune" "build" "-p" name "-j" jobs] 28 ["dune" "runtest" "-p" name "-j" jobs] {with-test & os != "macos"} 29] 30synopsis: "Address Resolution Protocol purely in OCaml" 31description: """ 32ARP is an implementation of the address resolution protocol (RFC826) purely in 33OCaml. It handles IPv4 protocol addresses and Ethernet hardware addresses only. 34""" 35url { 36 src: "https://github.com/mirage/arp/releases/download/v3.1.1/arp-3.1.1.tbz" 37 checksum: [ 38 "sha256=ea33c589e9deea300fb62bc2ba0b557cfdfeea4f40e600685b3a68c6868f06f1" 39 "sha512=5824ea057094d6035cac4235f0dd984af9d56fb9ec9aa621af3bc24674c97df328cd77efb749743f295f94c040e39d9b1caf68a13253393685dfae02fce6e869" 40 ] 41} 42x-commit-hash: "b7813353b417a8e03c2c50e63268ccea79de9daf" 43x-maintenance-intent: [ "(latest)" ]