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://anil-code.recoil.org/ocaml-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/v4.0.0/dockerfile-4.0.0.tbz"
45 checksum: [
46 "sha256=1fbd621e5c56a5a0bbfb454888317941990d59a203fc43d816c0663862c70203"
47 "md5=816592094fbe1186573ef727f6af50f2"
48 ]
49}