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