this repo has no description
1opam-version: "2.0"
2synopsis: "Dockerfile eDSL -- generation support"
3description: """
4This library provides a typed OCaml interface to generating Dockerfiles
5programmatically without having to resort to lots of shell scripting and
6awk/sed-style assembly.
7
8This sublibrary has support functions for generating arrays of Dockerfiles
9programmatically.
10"""
11maintainer: [
12 "Anil Madhavapeddy <anil@recoil.org>"
13 "Antonin Décimo <antonin@tarides.com>"
14 "David Allsopp <david.allsopp@metastack.com>"
15 "Kate <kit.ty.kate@disroot.org>"
16 "Thomas Leonard <talex5@gmail.com>"
17 "Tim McGilchrist <timmcgil@gmail.com>"
18]
19authors: [
20 "Anil Madhavapeddy"
21 "Anton Kochkov"
22 "Antonin Décimo"
23 "David Allsopp"
24 "Ewan Mellor"
25 "Kate Deplaix"
26 "Louis Gesbert"
27 "Mark Elvers"
28 "Thomas Leonard"
29 "Tim McGilchrist"
30]
31license: "ISC"
32tags: ["org:mirage" "org:ocamllabs"]
33homepage: "https://github.com/ocurrent/ocaml-dockerfile"
34doc: "https://ocurrent.github.io/ocaml-dockerfile/doc/dockerfile-cmd/"
35bug-reports: "https://github.com/ocurrent/ocaml-dockerfile/issues"
36depends: [
37 "dune" {>= "3.0"}
38 "bos" {>= "0.2"}
39 "cmdliner"
40 "dockerfile-opam" {= version}
41 "fmt" {>= "0.8.7"}
42 "logs"
43 "ppx_sexp_conv" {>= "v0.9.0"}
44 "sexplib"
45 "odoc" {with-doc}
46]
47conflicts: [
48 "result" {< "1.5"}
49 "rresult" {< "0.7.0"}
50]
51build: [
52 ["dune" "subst"] {dev}
53 [
54 "dune"
55 "build"
56 "-p"
57 name
58 "-j"
59 jobs
60 "@install"
61 "@runtest" {with-test}
62 "@doc" {with-doc}
63 ]
64]
65dev-repo: "git+https://github.com/ocurrent/ocaml-dockerfile.git"
66url {
67 src:
68 "https://github.com/ocurrent/ocaml-dockerfile/releases/download/v8.2.0/dockerfile-8.2.0.tbz"
69 checksum: [
70 "sha256=965b664b8d0be4ef56116d81040a70d8d1743b3da1764a52146da38d0437ad84"
71 "sha512=8545c9791166a0dbf791819e3ea57afabd2e8990da52956b2f60956f319296fe75e2c084795e0cd9014d808baee405dfc06bdb2ae905c8f79185bd40ebb31ff8"
72 ]
73}
74x-commit-hash: "7da34b8a913f8d4684fdd3884636c3df4fc25b86"