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