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/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.2"}
18 "ppx_sexp_conv" {>= "v0.9.0"}
19 "menhir" {build}
20 "charrua" {= version}
21 "ocaml" {>= "4.04.2"}
22 "cstruct" {>= "3.0.1"}
23 "sexplib"
24 "ipaddr" {>= "4.0.0" & < "5.0.0"}
25 "macaddr" {>= "4.0.0"}
26 "ipaddr-sexp"
27 "macaddr-sexp"
28 "cstruct-unix" {with-test}
29]
30synopsis: "DHCP server"
31description: """
32Charrua-server consists of a single `Dhcp_server` module used for constructing DHCP
33servers.
34
35[dhcp](https://github.com/mirage/mirage-skeleton/tree/master/applications/dhcp)
36is a Mirage DHCP unikernel server based on charrua, included as a part of the MirageOS unikernel example and starting-point repository.
37
38#### Features
39
40* `Dhcp_server` supports a stripped down ISC dhcpd.conf, so you can probably just
41 use your old `dhcpd.conf`. It also supports manual configuration building in
42 OCaml.
43* Logic/sequencing is agnostic of IO and platform, so it can run on Unix as a
44 process, as a Mirage unikernel or anything else.
45* All DHCP options are supported at the time of this writing.
46* Code is purely applicative.
47* It's in OCaml, so it's pretty cool.
48
49The name `charrua` is a reference to the, now extinct, semi-nomadic people of
50southern South America.
51"""
52url {
53 src:
54 "https://github.com/mirage/charrua/releases/download/v1.1.0/charrua-v1.1.0.tbz"
55 checksum: [
56 "sha256=31fc8919558acb83fe366528c208ba35412ef438462a32e3d8597325c0d6893b"
57 "sha512=62a97cc66f286dde86119f34fbc1c11e13c408b4b8330539c523ed2f1dc5953472315bae926dde4cf82ea3b9b627eeba562d29ba498e36ba42d954b87fd2c9b6"
58 ]
59}