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.04.2"}
12 "dune" {>= "1.0"}
13 "cstruct" {>= "2.2.0" & < "6.1.0"}
14 "ipaddr" {>= "3.0.0" & < "4.0.0"}
15 "macaddr" {< "4.0.0"}
16 "logs"
17 "mirage-random" {with-test & < "2.0.0"}
18 "mirage-random-test" {with-test}
19 "bisect_ppx" {with-test}
20 "alcotest" {with-test}
21]
22conflicts: [
23 "arp-mirage" {< "1.0.0"}
24]
25build: [
26 ["dune" "subst"] {dev}
27 ["dune" "build" "-p" name "-j" jobs]
28 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
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:
37 "https://github.com/mirage/arp/releases/download/v2.0.0/arp-v2.0.0.tbz"
38 checksum: [
39 "sha256=55aefbfab6c9df9ad4bbde8a85c347ea76a583dffc869b975766a6221252c4eb"
40 "md5=50bbe0aba0ee6527d56306f04402accf"
41 ]
42}