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