this repo has no description
1opam-version: "2.0"
2maintainer: ["Mindy Preston"]
3authors : ["Mindy Preston"]
4homepage: "https://github.com/mirage/charrua-core"
5bug-reports: "https://github.com/mirage/charrua-core/issues"
6dev-repo: "git+https://github.com/mirage/charrua-core.git"
7tags: [ "org:mirage"]
8doc: "https://docs.mirage.io"
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 "ocaml" {>= "4.04.2"}
19 "alcotest" {with-test}
20 "cstruct-unix" {with-test}
21 "mirage-random-test" {with-test}
22 "charrua-core" {>= "0.11.1" & < "0.12.0"}
23 "cstruct" {>= "3.0.2"}
24 "ipaddr" {< "4.0.0"}
25 "macaddr" {< "4.0.0"}
26]
27synopsis: "DHCP client implementation"
28description: """
29charrua-client is a DHCP client powered by [charrua-core](https://github.com/haesbaert/charrua-core).
30
31The base library exposes a simple state machine in `Dhcp_client`
32for use in acquiring a DHCP lease.
33"""
34url {
35 src:
36 "https://github.com/mirage/charrua-core/releases/download/v0.11.2/charrua-core-v0.11.2.tbz"
37 checksum: [
38 "sha256=58838986999b87d44a91514391ef92257f4f2eab53d41b2e10af9bb81f8ba09d"
39 "md5=c83ace0546e66ebe2b38e9685c7e9c55"
40 ]
41}