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 "bisect_ppx" {dev & >= "2.5.0"} 21 "mirage-random" {with-test & >= "2.0.0" & < "4.0.0"} 22 "mirage-random-test" {with-test & >= "0.1.0"} 23 "alcotest" {with-test} 24 "fmt" {with-test & >= "0.8.7"} 25 "mirage-vnetif" {with-test & >= "0.5.0"} 26 "mirage-clock-unix" {with-test & >= "3.0.0"} 27 "mirage-time-unix" {with-test & >= "2.0.0"} 28 "mirage-flow" {with-test & >= "2.0.1"} 29] 30build: [ 31 ["dune" "subst"] {dev} 32 ["dune" "build" "-p" name "-j" jobs] 33 ["dune" "runtest" "-p" name "-j" jobs] {with-test & os != "macos"} 34] 35synopsis: "Address Resolution Protocol purely in OCaml" 36description: """ 37ARP is an implementation of the address resolution protocol (RFC826) purely in 38OCaml. It handles IPv4 protocol addresses and Ethernet hardware addresses only. 39""" 40url { 41 src: "https://github.com/mirage/arp/releases/download/v3.1.0/arp-3.1.0.tbz" 42 checksum: [ 43 "sha256=83f684869b9f41cc92fef0ad2a4d19d6c61a60d466405699f6b4e9f45e27ab9e" 44 "sha512=aab7c0f0ebbd4dfb47a2c3527568d2714d5fe9c2d744c0e71172a977cd41160c439af2daa478ca70efc201243068bf3fba6471b85563150752efd632b2aec664" 45 ] 46} 47x-commit-hash: "992f523d30ed380c2b82382852f7fda1d50e298b"