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]
46build: [
47 ["dune" "subst"] {dev}
48 [
49 "dune"
50 "build"
51 "-p"
52 name
53 "-j"
54 jobs
55 "@install"
56 "@runtest" {with-test}
57 "@doc" {with-doc}
58 ]
59]
60dev-repo: "git+https://github.com/ocurrent/ocaml-dockerfile.git"
61url {
62 src:
63 "https://github.com/ocurrent/ocaml-dockerfile/releases/download/v8.1.0/dockerfile-8.1.0.tbz"
64 checksum: [
65 "sha256=7d01e40d0f128160dd3ad078221ea42c306720fd2c65e941c456895e21e7b227"
66 "sha512=92a402c09c65b01ed2faf7687c24721b7baa54e623e2b85401c8816f6afbeb3aec0cc0c2cb4282ca8377f7552aac834573c6b0deb16832a0c50984063256ce9b"
67 ]
68}
69x-commit-hash: "3074cdaa605ef38b323652028c05e624a4a7e187"