this repo has no description
1opam-version: "2.0" 2synopsis: "Dockerfile eDSL -- generation 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 8This sublibrary has support functions for generating arrays of Dockerfiles 9programmatically.""" 10maintainer: [ 11 "Anil Madhavapeddy <anil@recoil.org>" 12 "Antonin Décimo <antonin@tarides.com>" 13 "David Allsopp <david.allsopp@metastack.com>" 14 "Kate <kit.ty.kate@disroot.org>" 15 "Thomas Leonard <talex5@gmail.com>" 16 "Tim McGilchrist <timmcgil@gmail.com>" 17] 18authors: [ 19 "Anil Madhavapeddy" 20 "Anton Kochkov" 21 "Antonin Décimo" 22 "David Allsopp" 23 "Ewan Mellor" 24 "Kate Deplaix" 25 "Louis Gesbert" 26 "Mark Elvers" 27 "Thomas Leonard" 28 "Tim McGilchrist" 29] 30license: "ISC" 31tags: ["org:mirage" "org:ocamllabs"] 32homepage: "https://github.com/ocurrent/ocaml-dockerfile" 33doc: "https://ocurrent.github.io/ocaml-dockerfile/doc/dockerfile-cmd/" 34bug-reports: "https://github.com/ocurrent/ocaml-dockerfile/issues" 35depends: [ 36 "dune" {>= "3.0"} 37 "bos" {>= "0.2"} 38 "cmdliner" 39 "dockerfile-opam" {= version} 40 "fmt" {>= "0.8.7"} 41 "logs" 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.3/ocaml-dockerfile-8.2.3.tar.bz2" 68 checksum: [ 69 "md5=7f7a5f90feaec3527b2de653badbb304" 70 "sha512=6290e13f6dbb9896544f798920bc3a28748da74308d5a3bb9c8e1d79dfc97f8765fe3c49e839537924d4717840db5951d260a14ab08b7db309784e8d1d7ae339" 71 ] 72}