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.1/arp-v2.2.1.tbz"
35 checksum: [
36 "sha256=01563edfd2dee3acece331aadf73e2f8e5daadf3bf3ab09b61714d1e2f1273f4"
37 "sha512=3f1288af400614045061692ffc4e315bbe1fde71262281fa6f65b71cf4640e4622808c9ac0706bb3fd9c9d57be59d82955a0c0f28f8ec52f0232dfee10adb20d"
38 ]
39}