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-core"
6bug-reports: "https://github.com/mirage/charrua-core/issues"
7dev-repo: "git+https://github.com/mirage/charrua-core.git"
8doc: "https://mirage.github.io/charrua-core/api"
9
10build: [
11 ["jbuilder" "subst" "-n" name] {dev}
12 ["jbuilder" "build" "-p" name "-j" jobs]
13 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test}
14]
15
16depends: [
17 "jbuilder" {>= "1.0+beta7"}
18 "ppx_sexp_conv" {build}
19 "ppx_cstruct" {build}
20 "menhir" {build}
21 "ocaml" {>= "4.0.3"}
22 "cstruct" {>= "3.0.1" & < "4.0.0"}
23 "sexplib"
24 "ipaddr" {>= "3.0.0" & < "4.0.0"}
25 "macaddr"
26 "tcpip" {>= "3.6.0" & < "3.7.0"}
27 "rresult"
28 "io-page-unix" {with-test}
29 "cstruct-unix" {with-test}
30]
31synopsis: "DHCP wire frame encoder and decoder"
32description: """
33Charrua-core consists of two modules, a `Dhcp_wire` responsible for parsing and
34constructing DHCP messages and a `Dhcp_server` module used for constructing DHCP
35servers.
36
37You can browse the API for [charrua-core](http://www.github.com/mirage/charrua-core) at
38http://mirage.github.io/charrua-core/api
39
40[dhcp](https://github.com/mirage/mirage-skeleton/tree/master/applications/dhcp)
41is a Mirage DHCP unikernel server based on charrua-core, included as a part of the MirageOS unikernel example and starting-point repository.
42
43#### Features
44
45* `Dhcp_server` supports a stripped down ISC dhcpd.conf, so you can probably just
46 use your old `dhcpd.conf`. It also supports manual configuration building in
47 OCaml.
48* `Dhcp_wire` provides marshalling and unmarshalling utilities for DHCP, it is the
49 base for `Dhcp_server`.
50* Logic/sequencing is agnostic of IO and platform, so it can run on Unix as a
51 process, as a Mirage unikernel or anything else.
52* All DHCP options are supported at the time of this writing.
53* Code is purely applicative.
54* It's in OCaml, so it's pretty cool.
55
56The name `charrua` is a reference to the, now extinct, semi-nomadic people of
57southern South America.
58"""
59url {
60 src:
61 "https://github.com/mirage/charrua-core/releases/download/v0.11.1/charrua-core-0.11.1.tbz"
62 checksum: [
63 "sha256=8ffb339bb95a34fc78246f4c01ccae545e791275f2cbee2aa9e94e1a4aec4c77"
64 "md5=c9f82c844f78643cb05650a397acfb1c"
65 ]
66}
67flags: deprecated