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