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://docs.mirage.io/dockerfile"
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 "ocamlfind" {build}
13 "ocamlbuild" {build}
14 "ppx_deriving"
15 "ppx_sexp_conv"
16 "topkg" {build}
17 "cmdliner"
18 "sexplib"
19 "base-bytes"
20]
21build: [ "ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%" ]
22synopsis: "Typed interface for constructing Docker container descriptions"
23description: """
24[Docker](http://docker.com) is a container manager that can build images
25automatically by reading the instructions from a `Dockerfile`. A Dockerfile is
26a text document that contains all the commands you would normally execute
27manually in order to build a Docker image. By calling `docker build` from your
28terminal, you can have Docker build your image step-by-step, executing the
29instructions successively. Read more at <http://docker.com>
30
31This library provides a typed OCaml interface to generating Dockerfiles
32programmatically without having to resort to lots of shell scripting and
33awk/sed-style assembly.
34
35- **HTML Documentation**: https://avsm.github.io/ocaml-dockerfile
36- **Source:**: https://github.com/avsm/ocaml-dockerfile
37- **Issues**: https://github.com/avsm/ocaml-dockerfile/issues
38- **Email**: <mirageos-devel@lists.xenproject.org>"""
39url {
40 src:
41 "https://github.com/avsm/ocaml-dockerfile/releases/download/v1.7.2/dockerfile-1.7.2.tbz"
42 checksum: [
43 "sha256=1b7cedd5b0dbf96e15713af2f0ce3be66807f234af97b7e36281ea4c82e5affb"
44 "md5=a6f7c001b65c9b51154819f0c8399830"
45 ]
46}