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 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
14]
15
16depends: [
17 "ocaml" {>= "4.06.0"}
18 "dune" {>= "1.4.0"}
19 "ppx_sexp_conv" {>= "v0.9.0"}
20 "menhir" {build}
21 "charrua" {= version}
22 "cstruct" {>= "3.0.1"}
23 "sexplib"
24 "ipaddr" {>= "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.3.0/charrua-v1.3.0.tbz"
55 checksum: [
56 "sha256=b9f59f45d2eae1253de1f7b4d42f5f2d772949b55f963a04eae40086b1936afc"
57 "sha512=426868b9cc4b861fa5e48d59d03891799cd0c4cca67adc2bcb665176c2ea47c93677868fcb2d78706eedb4aabcc0582f8b3bfe9c8f3829d4a6d5a181871eadb4"
58 ]
59}