this repo has no description
1opam-version: "2.0" 2maintainer: "Anil Madhavapeddy <anil@recoil.org>" 3authors: "Anil Madhavapeddy <anil@recoil.org>" 4homepage: "https://github.com/avsm/ocaml-dockerfile" 5bug-reports: "https://github.com/avsm/ocaml-dockerfile/issues" 6license: "ISC" 7tags: [ "org:mirage" "org:ocamllabs" ] 8build: [ 9 ["./configure" "--prefix=%{prefix}%"] 10 [make] 11] 12install: [make "install"] 13remove: ["ocamlfind" "remove" "dockerfile"] 14depends: [ 15 "ocaml" {>= "4.00.1" & < "5.0.0"} 16 "ocamlfind" {build} 17 "ocamlbuild" {build} 18] 19dev-repo: "git+https://github.com/avsm/ocaml-dockerfile" 20synopsis: "Typed interface for constructing Docker container descriptions" 21description: """ 22[Docker](http://docker.com) is a Linux container manager that can build images 23automatically by reading the instructions from a `Dockerfile`. A Dockerfile is 24a text document that contains all the commands you would normally execute 25manually in order to build a Docker image. By calling `docker build` from your 26terminal, you can have Docker build your image step-by-step, executing the 27instructions successively. Read more at <http://docker.com> 28 29This library provides a typed OCaml interface to generating Dockerfiles 30programmatically without having to resort to lots of shell scripting and 31awk/sed-style assembly. 32 33- **HTML Documentation**: https://avsm.github.io/ocaml-dockerfile 34- **Source:**: https://github.com/avsm/ocaml-dockerfile 35- **Issues**: https://github.com/avsm/ocaml-dockerfile/issues 36- **Email**: <mirageos-devel@lists.xenproject.org>""" 37flags: light-uninstall 38url { 39 src: "https://github.com/avsm/ocaml-dockerfile/archive/v1.0.0.tar.gz" 40 checksum: [ 41 "sha256=698bc67d307764343601045aad7dc89839b383bb603c173e612be7819a641ba9" 42 "md5=9821822406b6ccbb15d82057884fe648" 43 ] 44}