-
Notifications
You must be signed in to change notification settings - Fork 18
/
dockerfile-cmd.opam
66 lines (65 loc) · 1.56 KB
/
dockerfile-cmd.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Dockerfile eDSL -- generation support"
description: """
This library provides a typed OCaml interface to generating Dockerfiles
programmatically without having to resort to lots of shell scripting and
awk/sed-style assembly.
This sublibrary has support functions for generating arrays of Dockerfiles
programmatically.
"""
maintainer: [
"Anil Madhavapeddy <anil@recoil.org>"
"Antonin Décimo <antonin@tarides.com>"
"David Allsopp <david.allsopp@metastack.com>"
"Kate <kit.ty.kate@disroot.org>"
"Thomas Leonard <talex5@gmail.com>"
"Tim McGilchrist <timmcgil@gmail.com>"
]
authors: [
"Anil Madhavapeddy"
"Anton Kochkov"
"Antonin Décimo"
"David Allsopp"
"Ewan Mellor"
"Kate Deplaix"
"Louis Gesbert"
"Mark Elvers"
"Thomas Leonard"
"Tim McGilchrist"
]
license: "ISC"
tags: ["org:mirage" "org:ocamllabs"]
homepage: "https://github.com/ocurrent/ocaml-dockerfile"
doc: "https://ocurrent.github.io/ocaml-dockerfile/doc/dockerfile-cmd/"
bug-reports: "https://github.com/ocurrent/ocaml-dockerfile/issues"
depends: [
"dune" {>= "3.0"}
"bos" {>= "0.2"}
"cmdliner"
"dockerfile-opam" {= version}
"fmt" {>= "0.8.7"}
"logs"
"ppx_sexp_conv" {>= "v0.9.0"}
"sexplib"
"odoc" {with-doc}
]
conflicts: [
"result" {< "1.5"}
"rresult" {< "0.7.0"}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/ocurrent/ocaml-dockerfile.git"