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"
6license: "ISC"
7doc: "http://avsm.github.io/avsm/ocaml-dockerfile/doc"
8tags: ["org:mirage" "org:ocamllabs"]
9dev-repo: "git+https://github.com/avsm/ocaml-dockerfile.git"
10build: ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%"]
11depends: [
12 "ocaml" {>= "4.02.3"}
13 "ocamlfind" {build}
14 "ocamlbuild" {build}
15 "ppx_deriving"
16 "ppx_sexp_conv"
17 "topkg" {build}
18 "cmdliner"
19 "sexplib"
20 "base-bytes"
21 "fmt"
22]
23synopsis: "Typed interface for constructing Docker container descriptions"
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
36- **HTML Documentation**: https://avsm.github.io/ocaml-dockerfile
37- **Source:**: https://github.com/avsm/ocaml-dockerfile
38- **Issues**: https://github.com/avsm/ocaml-dockerfile/issues
39- **Email**: <mirageos-devel@lists.xenproject.org>"""
40url {
41 src:
42 "https://github.com/avsm/ocaml-dockerfile/releases/download/v2.2.0/dockerfile-2.2.0.tbz"
43 checksum: [
44 "sha256=a587313d984ccf1301e36feb2bfad3236b6f2c521ba5ffbb0287253f9ff63868"
45 "md5=e2eb9c25255441b7c3919c6c9aead044"
46 ]
47}