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.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""" 34 35url { 36 src: 37 "https://github.com/mirage/charrua-core/releases/download/v0.11.1/charrua-core-0.11.1.tbz" 38 checksum: [ 39 "sha256=8ffb339bb95a34fc78246f4c01ccae545e791275f2cbee2aa9e94e1a4aec4c77" 40 "md5=c9f82c844f78643cb05650a397acfb1c" 41 ] 42}