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."""
7maintainer: [
8 "Anil Madhavapeddy <anil@recoil.org>"
9 "Antonin Décimo <antonin@tarides.com>"
10 "David Allsopp <david.allsopp@metastack.com>"
11 "Kate <kit.ty.kate@disroot.org>"
12 "Thomas Leonard <talex5@gmail.com>"
13 "Tim McGilchrist <timmcgil@gmail.com>"
14]
15authors: [
16 "Anil Madhavapeddy"
17 "Anton Kochkov"
18 "Antonin Décimo"
19 "David Allsopp"
20 "Ewan Mellor"
21 "Kate Deplaix"
22 "Louis Gesbert"
23 "Mark Elvers"
24 "Thomas Leonard"
25 "Tim McGilchrist"
26]
27license: "ISC"
28tags: ["org:mirage" "org:ocamllabs"]
29homepage: "https://github.com/ocurrent/ocaml-dockerfile"
30doc: "https://ocurrent.github.io/ocaml-dockerfile/doc/dockerfile/"
31bug-reports: "https://github.com/ocurrent/ocaml-dockerfile/issues"
32depends: [
33 "dune" {>= "3.0"}
34 "ocaml" {>= "4.08"}
35 "fmt" {>= "0.8.7"}
36 "ppx_sexp_conv" {>= "v0.9.0"}
37 "sexplib"
38 "alcotest" {>= "1.7.0" & with-test}
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.3/ocaml-dockerfile-8.2.3.tar.bz2"
63 checksum: [
64 "md5=7f7a5f90feaec3527b2de653badbb304"
65 "sha512=6290e13f6dbb9896544f798920bc3a28748da74308d5a3bb9c8e1d79dfc97f8765fe3c49e839537924d4717840db5951d260a14ab08b7db309784e8d1d7ae339"
66 ]
67}