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/hannesm/arp"
5doc: "https://hannesm.github.io/arp/doc"
6dev-repo: "git+https://github.com/hannesm/arp.git"
7bug-reports: "https://github.com/hannesm/arp/issues"
8license: "ISC"
9depends: [
10 "ocaml" {>= "4.04.2"}
11 "ocamlfind" {build}
12 "ocamlbuild" {build}
13 "topkg" {build}
14 "ppx_cstruct"
15 "cstruct" {>= "2.2.0" & < "6.1.0"}
16 "ipaddr" {>= "2.2.0" & < "3.0.0"}
17 "logs"
18 "alcotest" {with-test}
19 "nocrypto" {with-test}
20]
21depopts: [
22 "mirage-protocols-lwt"
23 "mirage-time-lwt"
24 "mirage-clock"
25 "mirage-protocols"
26 "tcpip"
27 "lwt"
28 "duration"
29]
30conflicts: [
31 "tcpip" {<"2.8.0"}
32 "mirage-types-lwt" {<"3.0.0"}
33 "mirage-clock" {>= "3.0.0"}
34 "mirage-protocols" {>= "4.0.0"}
35]
36build: [
37 [
38 "ocaml"
39 "pkg/pkg.ml"
40 "build"
41 "--pinned"
42 "%{pinned}%"
43 "--tests"
44 "false"
45 "--with-mirage"
46 "%{mirage-protocols+mirage-protocols-lwt+mirage-time-lwt+mirage-clock+lwt+tcpip+duration:installed}%"
47 ]
48 [
49 "ocaml"
50 "pkg/pkg.ml"
51 "build"
52 "--pinned"
53 "%{pinned}%"
54 "--tests"
55 "true"
56 "--with-mirage"
57 "%{mirage-protocols+mirage-protocols-lwt+mirage-time-lwt+mirage-clock+lwt+tcpip+duration:installed}%"
58 ] {with-test}
59 ["ocaml" "pkg/pkg.ml" "test"] {with-test}
60]
61synopsis: "Address Resolution Protocol purely in OCaml"
62description: """
63ARP is an implementation of the address resolution protocol (RFC826) purely in
64OCaml. It handles IPv4 protocol addresses and Ethernet hardware addresses only.
65
66A MirageOS
67[Mirage_protocols.ARP](https://github.com/mirage/mirage-protocols/blob/4776d2ab1d8c5b1bfd69d46583779c2caef7b5e8/src/mirage_protocols.mli#L169)
68implementation is in the `mirage` subdirectory.
69
70Motivation for this implementation is [written up](https://hannes.robur.coop/Posts/ARP)."""
71url {
72 src: "https://github.com/mirage/arp/releases/download/0.2.1/arp-0.2.1.tbz"
73 checksum: [
74 "sha256=d68e2e3c3fe8c4d4584443047aa47c1e917775429cace247292a9b723bf146ff"
75 "md5=4f24627b054bd722669ea0785279a41f"
76 ]
77}