this repo has no description
1opam-version: "2.0"
2maintainer: "Christiano F. Haesbaert <haesbaert@haesbaert.org>"
3authors: "Christiano F. Haesbaert <haesbaert@haesbaert.org>"
4license: "ISC"
5homepage: "https://github.com/mirage/charrua"
6bug-reports: "https://github.com/mirage/charrua/issues"
7dev-repo: "git+https://github.com/mirage/charrua.git"
8doc: "https://mirage.github.io/charrua/"
9
10build: [
11 ["dune" "subst"] {dev}
12 ["dune" "build" "-p" name "-j" jobs]
13]
14
15depends: [
16 "ocaml" {>= "4.06.0"}
17 "dune" {>= "1.2.0"}
18 "ppx_sexp_conv" {>= "v0.10.0"}
19 "ppx_cstruct"
20 "cstruct" {>= "3.0.1"}
21 "sexplib"
22 "ipaddr" {>= "4.0.0" & < "5.0.0"}
23 "macaddr" {>= "4.0.0"}
24 "ipaddr-sexp"
25 "macaddr-sexp"
26 "ethernet" {>= "2.2.0" & < "3.0.0"}
27 "tcpip" {>= "4.0.0" & < "5.0.0"}
28 "rresult"
29]
30synopsis: "DHCP wire frame encoder and decoder"
31description: """
32Charrua consists a single modules, `Dhcp_wire` responsible for parsing and
33constructing DHCP messages
34
35You can browse the API for [charrua](http://www.github.com/mirage/charrua) at
36http://mirage.github.io/charrua/api
37
38#### Features
39
40* `Dhcp_wire` provides marshalling and unmarshalling utilities for DHCP.
41* Logic/sequencing is agnostic of IO and platform, so it can run on Unix as a
42 process, as a Mirage unikernel or anything else.
43* All DHCP options are supported at the time of this writing.
44* Code is purely applicative.
45* It's in OCaml, so it's pretty cool.
46
47The name `charrua` is a reference to the, now extinct, semi-nomadic people of
48southern South America.
49"""
50url {
51 src:
52 "https://github.com/mirage/charrua/releases/download/v1.2.0/charrua-v1.2.0.tbz"
53 checksum: [
54 "sha256=d465e2da9d2e6e884212853d68ef29adb22c7621ed0a65333d9663b45ed92485"
55 "sha512=1ce2fa9191baf2564993d78701124bd334ea00691c62a3ff10dfa69ee0b26369011a51be5e8a755da76ee451a6b89864626a8110039520408538071c52dab90c"
56 ]
57}