this repo has no description
1opam-version: "2.0"
2synopsis: "DHCP server"
3description: """\
4Charrua-server consists of a single `Dhcp_server` module used for constructing DHCP
5servers.
6
7[dhcp](https://github.com/mirage/mirage-skeleton/tree/master/applications/dhcp)
8is a Mirage DHCP unikernel server based on charrua, included as a part of the MirageOS unikernel example and starting-point repository.
9
10#### Features
11
12* `Dhcp_server` supports a stripped down ISC dhcpd.conf, so you can probably just
13 use your old `dhcpd.conf`. It also supports manual configuration building in
14 OCaml.
15* Logic/sequencing is agnostic of IO and platform, so it can run on Unix as a
16 process, as a Mirage unikernel or anything else.
17* All DHCP options are supported at the time of this writing.
18* Code is purely applicative.
19* It's in OCaml, so it's pretty cool.
20
21The name `charrua` is a reference to the, now extinct, semi-nomadic people of
22southern South America."""
23maintainer: "Christiano F. Haesbaert <haesbaert@haesbaert.org>"
24authors: "Christiano F. Haesbaert <haesbaert@haesbaert.org>"
25license: "ISC"
26homepage: "https://github.com/mirage/charrua"
27doc: "https://mirage.github.io/charrua/"
28bug-reports: "https://github.com/mirage/charrua/issues"
29depends: [
30 "ocaml" {>= "4.08.0"}
31 "dune" {>= "1.4.0"}
32 "ppx_sexp_conv" {>= "v0.9.0"}
33 "menhir" {build & >= "20180523"}
34 "charrua" {= version}
35 "cstruct" {>= "6.0.0"}
36 "sexplib"
37 "ipaddr" {>= "5.0.0"}
38 "macaddr" {>= "4.0.0"}
39 "ipaddr-sexp"
40 "macaddr-sexp"
41 "cstruct-unix" {with-test}
42 "ppx_cstruct" {>= "6.0.0" & with-test}
43 "tcpip" {>= "6.1.0" & with-test}
44 "alcotest" {with-test & >= "1.4.0"}
45]
46build: [
47 ["dune" "subst"] {dev}
48 ["dune" "build" "-p" name "-j" jobs]
49 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
50]
51dev-repo: "git+https://github.com/mirage/charrua.git"
52url {
53 src:
54 "https://github.com/mirage/charrua/releases/download/v1.4.1/charrua-v1.4.1.tbz"
55 checksum: [
56 "sha256=39545b2b8c70df937fcb701b4d80aa52cf95a89ab96fed8e4422e52e9a97f979"
57 "sha512=6e399ab93f7306df1a96fb6690545de241cac2db93540d42c6ae08d9ba149a83061cb21a7bd7a2735fe7a8363c21a55773acbf969484c675e956257888a67f4f"
58 ]
59}
60x-commit-hash: "f0e7ecfc09bc87b00ee77812e7e181b9995a2e87"