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 "ppx_sexp_conv" {>= "v0.9.0"} 14 "sexplib" 15 "base-bytes" 16 "fmt" 17 "ocaml-migrate-parsetree" {< "2.0.0"} 18] 19build: [ 20 ["jbuilder" "subst" "-p" name "--name" name] {dev} 21 ["jbuilder" "build" "-p" name "-j" jobs] 22] 23synopsis: "Dockerfile eDSL and distribution support" 24description: """ 25[Docker](http://docker.com) is a container manager that can build images 26automatically by reading the instructions from a `Dockerfile`. A Dockerfile is 27a text document that contains all the commands you would normally execute 28manually in order to build a Docker image. By calling `docker build` from your 29terminal, you can have Docker build your image step-by-step, executing the 30instructions successively. Read more at <http://docker.com> 31 32This library provides a typed OCaml interface to generating Dockerfiles 33programmatically without having to resort to lots of shell scripting and 34awk/sed-style assembly. 35 36ocaml-dockerfile is distributed under the ISC license. 37 38- **HTML Documentation**: http://docs.mirage.io/dockerfile 39- **Source:**: https://github.com/avsm/ocaml-dockerfile 40- **Issues**: https://github.com/avsm/ocaml-dockerfile/issues 41- **Email**: <anil@recoil.org>""" 42url { 43 src: 44 "https://github.com/avsm/ocaml-dockerfile/releases/download/v3.1.0/dockerfile-3.1.0.tbz" 45 checksum: [ 46 "sha256=5aa83639dd88de6e2f6b2b6bd4f6fb0b9138c50d3f767fb1257ebf85dc2c3eec" 47 "md5=29029b66310492ba2a2ad5dca830d56f" 48 ] 49}