this repo has no description
1opam-version: "2.0"
2synopsis: "Dockerfile eDSL -- opam 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
8The opam subpackage provides opam and Linux-specific distribution support
9for generating dockerfiles.
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-opam/"
35bug-reports: "https://github.com/ocurrent/ocaml-dockerfile/issues"
36depends: [
37 "dune" {>= "3.0"}
38 "astring"
39 "dockerfile" {= version}
40 "fmt" {>= "0.8.7"}
41 "ocaml-version" {>= "3.5.0"}
42 "ppx_sexp_conv" {>= "v0.9.0"}
43 "sexplib"
44 "odoc" {with-doc}
45]
46conflicts: [
47 "result" {< "1.5"}
48 "rresult" {< "0.7.0"}
49]
50build: [
51 ["dune" "subst"] {dev}
52 [
53 "dune"
54 "build"
55 "-p"
56 name
57 "-j"
58 jobs
59 "@install"
60 "@runtest" {with-test}
61 "@doc" {with-doc}
62 ]
63]
64dev-repo: "git+https://github.com/ocurrent/ocaml-dockerfile.git"
65url {
66 src:
67 "https://github.com/ocurrent/ocaml-dockerfile/releases/download/v8.2.5/dockerfile-8.2.5.tbz"
68 checksum: [
69 "sha256=4b4f450ac1332b32dc13975434592139c68f45657b6623b56cfaf1da7d714f26"
70 "sha512=cc69a3e535c304b33c9af18b50d8550160184deb0b0a81aedc16c52a148cee0a99283ec8d350286fce64c316b473693372b565c809d4c590d4f698e8e395a98d"
71 ]
72}
73x-commit-hash: "2e407583a707ae7382b4e5bb3ea5a772f4f6b04d"