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 ["dune" "subst"] {dev}
12 ["dune" "build" "-p" name "-j" jobs]
13 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
14]
15
16depends: [
17 "dune" {>= "1.0"}
18 "ppx_sexp_conv"
19 "ppx_cstruct"
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 "ethernet" {>= "2.0.0"}
27 "tcpip" {>= "3.7.0"}
28 "rresult"
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.12.0/charrua-core-v0.12.0.tbz"
62 checksum: [
63 "sha256=399888ffb59ea70dc3728ea3b307eeec25bd883af9b798acee1842a2b2ec593a"
64 "md5=a1edfeeaea6d9ed079efec4514f0e44c"
65 ]
66}
67flags: deprecated
68x-maintenance-intent: ["(none)"]