this repo has no description
1opam-version: "2.0"
2maintainer: "Dave Scott <dave@recoil.org>"
3authors: ["Anil Madhavapeddy" "Dave Scott" "Richard Mortier"]
4license: "ISC"
5tags: ["org:mirage" "org:xapi-project"]
6homepage: "https://github.com/mirage/ocaml-pcap"
7doc: "https://mirage.github.io/ocaml-pcap/"
8bug-reports: "https://github.com/mirage/ocaml-pcap/issues"
9depends: [
10 "ocaml" {>="4.03.0"}
11 "dune" {>= "1.0"}
12 "cstruct" {>= "1.9.0"}
13 "ppx_cstruct" {> "0"}
14 "ounit" {with-test}
15 "mmap" {with-test}
16]
17build: [
18 ["dune" "subst"] {dev}
19 ["dune" "build" "-p" name "-j" jobs]
20 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
21]
22dev-repo: "git+https://github.com/mirage/ocaml-pcap.git"
23synopsis: "Decode and encode PCAP (packet capture) files"
24description: """
25pcap-format provides an interface to encode and decode pcap files, dealing with
26both endianess, including endianess detection.
27"""
28url {
29 src:
30 "https://github.com/mirage/ocaml-pcap/releases/download/0.5.2/pcap-format-0.5.2.tbz"
31 checksum: [
32 "sha256=2e8cba93c4ea4497bc106a4f8396d7818b2684eae039c0a20ce47bfadecd8591"
33 "sha512=913b71f980126cc1e0ef18ab92eaaebc47adb7ef46dba8d0095f43b328d9dcc9ba7d63512c885f48664fe0397b5ea05e675300f175091c82788acd2d79b1fe25"
34 ]
35}