-
Notifications
You must be signed in to change notification settings - Fork 18
/
charrua-server.opam
46 lines (42 loc) · 1.64 KB
/
charrua-server.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
opam-version: "2.0"
synopsis: "DHCP server"
description: """\
Charrua-server consists of a single `Dhcp_server` module used for constructing DHCP
servers.
[dhcp](https://github.com/mirage/mirage-skeleton/tree/master/applications/dhcp)
is a Mirage DHCP unikernel server based on charrua, included as a part of the MirageOS unikernel example and starting-point repository.
#### Features
* `Dhcp_server` supports a stripped down ISC dhcpd.conf, so you can probably just
use your old `dhcpd.conf`. It also supports manual configuration building in
OCaml.
* Logic/sequencing is agnostic of IO and platform, so it can run on Unix as a
process, as a Mirage unikernel or anything else.
* All DHCP options are supported at the time of this writing.
* Code is purely applicative.
* It's in OCaml, so it's pretty cool.
The name `charrua` is a reference to the, now extinct, semi-nomadic people of
southern South America."""
maintainer: "Christiano F. Haesbaert <[email protected]>"
authors: "Christiano F. Haesbaert <[email protected]>"
license: "ISC"
homepage: "https://github.com/mirage/charrua"
doc: "https://mirage.github.io/charrua/"
bug-reports: "https://github.com/mirage/charrua/issues"
depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "1.4.0"}
"menhir" {build & >= "20180523"}
"charrua" {= version}
"cstruct" {>= "6.0.0"}
"ipaddr" {>= "5.0.0"}
"macaddr" {>= "4.0.0"}
"cstruct-unix" {with-test}
"tcpip" {>= "7.0.0" & with-test}
"alcotest" {with-test & >= "1.4.0"}
]
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
dev-repo: "git+https://github.com/mirage/charrua.git"