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 [ "jbuilder" "subst" "-n" name ] {dev}
12 [ "jbuilder" "build" "-p" name "-j" jobs ]
13 [ "jbuilder" "runtest" "-p" name "-j" jobs ] {with-test}
14]
15
16depends: [
17 "jbuilder" {>= "1.0+beta9"}
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.0" & < "0.12.0"}
23 "cstruct" {>= "3.0.2"}
24 "ipaddr" {< "4.0.0"}
25]
26synopsis: "DHCP client implementation"
27description: """
28charrua-client is a DHCP client powered by [charrua-core](https://github.com/haesbaert/charrua-core).
29
30The base library exposes a simple state machine in `Dhcp_client`
31for use in acquiring a DHCP lease.
32"""
33
34url {
35 src:
36 "https://github.com/mirage/charrua-core/releases/download/v0.11.0/charrua-core-0.11.0.tbz"
37 checksum: [
38 "sha256=74357da2ada057059592196594cf87d0514d09de15fe86ae321074726e07a876"
39 "md5=f4bb1ac3d1443a576982eae49d0eb7d8"
40 ]
41}