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.""" 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-opam/" 34bug-reports: "https://github.com/ocurrent/ocaml-dockerfile/issues" 35depends: [ 36 "dune" {>= "3.0"} 37 "astring" 38 "dockerfile" {= version} 39 "fmt" {>= "0.8.7"} 40 "ocaml-version" {>= "3.5.0"} 41 "ppx_sexp_conv" {>= "v0.9.0"} 42 "sexplib" 43 "odoc" {with-doc} 44] 45conflicts: [ 46 "result" {< "1.5"} 47 "rresult" {< "0.7.0"} 48] 49build: [ 50 ["dune" "subst"] {dev} 51 [ 52 "dune" 53 "build" 54 "-p" 55 name 56 "-j" 57 jobs 58 "@install" 59 "@runtest" {with-test} 60 "@doc" {with-doc} 61 ] 62] 63dev-repo: "git+https://github.com/ocurrent/ocaml-dockerfile.git" 64url { 65 src: 66 "https://github.com/ocurrent/ocaml-dockerfile/releases/download/v8.2.3/ocaml-dockerfile-8.2.3.tar.bz2" 67 checksum: [ 68 "md5=7f7a5f90feaec3527b2de653badbb304" 69 "sha512=6290e13f6dbb9896544f798920bc3a28748da74308d5a3bb9c8e1d79dfc97f8765fe3c49e839537924d4717840db5951d260a14ab08b7db309784e8d1d7ae339" 70 ] 71}