this repo has no description
1opam-version: "2.0" 2maintainer: "Christophe Troestler <Christophe.Troestler@umons.ac.be>" 3authors: [ "Christophe Troestler <Christophe.Troestler@umons.ac.be>" ] 4license: "LGPL-3.0-only WITH OCaml-LGPL-linking-exception" 5homepage: "https://github.com/Chris00/ocaml-docker" 6dev-repo: "git+https://github.com/Chris00/ocaml-docker.git" 7bug-reports: "https://github.com/Chris00/ocaml-docker/issues" 8build: [ 9 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 10 ["ocaml" "setup.ml" "-build"] 11 ["ocaml" "setup.ml" "-doc"] {with-doc} 12] 13install: ["ocaml" "setup.ml" "-install"] 14remove: [ 15 ["ocamlfind" "remove" "docker"] 16] 17depends: [ 18 "ocaml" {< "5.0.0"} 19 "base-bytes" 20 "base-unix" 21 "ocamlbuild" {build} 22 "ocamlfind" {build & >= "1.5.3"} 23 "yojson" {< "2.0.0"} 24] 25synopsis: "Binding to the Docker Remote API" 26description: """ 27Control Docker <https://www.docker.com/> containers using the remote 28API.""" 29flags: light-uninstall 30url { 31 src: 32 "https://github.com/Chris00/ocaml-docker/releases/download/0.1/docker-api-0.1.tar.gz" 33 checksum: [ 34 "sha256=7c759b3d0f237df09e0d2be0e0f1c0586bb840f702353236ce18f8b99c85ed75" 35 "md5=6745c33bddc7437d8bd725b91e783b93" 36 ] 37}