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