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" 5doc: "http://avsm.github.io/avsm/ocaml-dockerfile/doc" 6license: "ISC" 7dev-repo: "git+https://github.com/avsm/ocaml-dockerfile.git" 8bug-reports: "https://github.com/avsm/ocaml-dockerfile/issues" 9tags: ["org:mirage" "org:ocamllabs"] 10depends: [ 11 "ocaml" {>= "4.02.3"} 12 "jbuilder" {>= "1.0+beta10"} 13 "dockerfile" {>= "3.0.0"} 14 "ocaml-version" {<"1.0.0"} 15 "cmdliner" 16 "astring" 17 "sexplib" 18 "fmt" 19 "cmdliner" 20 "ocaml-migrate-parsetree" {< "2.0.0"} 21] 22build: [ 23 ["jbuilder" "subst" "-p" name "--name" name] {dev} 24 ["jbuilder" "build" "-p" name "-j" jobs] 25] 26synopsis: "Dockerfile eDSL and distribution support" 27description: """ 28[Docker](http://docker.com) is a container manager that can build images 29automatically by reading the instructions from a `Dockerfile`. A Dockerfile is 30a text document that contains all the commands you would normally execute 31manually in order to build a Docker image. By calling `docker build` from your 32terminal, you can have Docker build your image step-by-step, executing the 33instructions successively. Read more at <http://docker.com> 34 35This library provides a typed OCaml interface to generating Dockerfiles 36programmatically without having to resort to lots of shell scripting and 37awk/sed-style assembly. 38 39ocaml-dockerfile is distributed under the ISC license. 40 41- **HTML Documentation**: <http://anil-code.recoil.org/ocaml-dockerfile> 42- **Source:**: <https://github.com/avsm/ocaml-dockerfile> 43- **Issues**: <https://github.com/avsm/ocaml-dockerfile/issues> 44- **Email**: <anil@recoil.org>""" 45url { 46 src: 47 "https://github.com/avsm/ocaml-dockerfile/releases/download/v4.0.0/dockerfile-4.0.0.tbz" 48 checksum: [ 49 "sha256=1fbd621e5c56a5a0bbfb454888317941990d59a203fc43d816c0663862c70203" 50 "md5=816592094fbe1186573ef727f6af50f2" 51 ] 52}