this repo has no description
1opam-version: "2.0"
2synopsis: "Dockerfile eDSL in OCaml"
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"""
8maintainer: [
9 "Anil Madhavapeddy <anil@recoil.org>"
10 "Antonin Décimo <antonin@tarides.com>"
11 "David Allsopp <david.allsopp@metastack.com>"
12 "Kate <kit.ty.kate@disroot.org>"
13 "Thomas Leonard <talex5@gmail.com>"
14 "Tim McGilchrist <timmcgil@gmail.com>"
15]
16authors: [
17 "Anil Madhavapeddy"
18 "Anton Kochkov"
19 "Antonin Décimo"
20 "David Allsopp"
21 "Ewan Mellor"
22 "Kate Deplaix"
23 "Louis Gesbert"
24 "Mark Elvers"
25 "Thomas Leonard"
26 "Tim McGilchrist"
27]
28license: "ISC"
29tags: ["org:mirage" "org:ocamllabs"]
30homepage: "https://github.com/ocurrent/ocaml-dockerfile"
31doc: "https://ocurrent.github.io/ocaml-dockerfile/doc/dockerfile/"
32bug-reports: "https://github.com/ocurrent/ocaml-dockerfile/issues"
33depends: [
34 "dune" {>= "3.0"}
35 "ocaml" {>= "4.08"}
36 "fmt" {>= "0.8.7"}
37 "ppx_sexp_conv" {>= "v0.9.0"}
38 "sexplib"
39 "odoc" {with-doc}
40]
41conflicts: [
42 "result" {< "1.5"}
43 "rresult" {< "0.7.0"}
44]
45build: [
46 ["dune" "subst"] {dev}
47 [
48 "dune"
49 "build"
50 "-p"
51 name
52 "-j"
53 jobs
54 "@install"
55 "@runtest" {with-test}
56 "@doc" {with-doc}
57 ]
58]
59dev-repo: "git+https://github.com/ocurrent/ocaml-dockerfile.git"
60url {
61 src:
62 "https://github.com/ocurrent/ocaml-dockerfile/releases/download/v8.2.0/dockerfile-8.2.0.tbz"
63 checksum: [
64 "sha256=965b664b8d0be4ef56116d81040a70d8d1743b3da1764a52146da38d0437ad84"
65 "sha512=8545c9791166a0dbf791819e3ea57afabd2e8990da52956b2f60956f319296fe75e2c084795e0cd9014d808baee405dfc06bdb2ae905c8f79185bd40ebb31ff8"
66 ]
67}
68x-commit-hash: "7da34b8a913f8d4684fdd3884636c3df4fc25b86"