this repo has no description
1opam-version: "2.0" 2synopsis: "Dockerfile eDSL in OCaml" 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""" 8maintainer: [ 9 "Anil Madhavapeddy <anil@recoil.org>" 10 "Antonin Décimo <antonin@tarides.com>" 11 "David Allsopp <david.allsopp@metastack.com>" 12 "Kate <kit.ty.kate@disroot.org>" 13 "Thomas Leonard <talex5@gmail.com>" 14 "Tim McGilchrist <timmcgil@gmail.com>" 15] 16authors: [ 17 "Anil Madhavapeddy" 18 "Anton Kochkov" 19 "Antonin Décimo" 20 "David Allsopp" 21 "Ewan Mellor" 22 "Kate Deplaix" 23 "Louis Gesbert" 24 "Mark Elvers" 25 "Thomas Leonard" 26 "Tim McGilchrist" 27] 28license: "ISC" 29tags: ["org:mirage" "org:ocamllabs"] 30homepage: "https://github.com/ocurrent/ocaml-dockerfile" 31doc: "https://ocurrent.github.io/ocaml-dockerfile/doc/dockerfile/" 32bug-reports: "https://github.com/ocurrent/ocaml-dockerfile/issues" 33depends: [ 34 "dune" {>= "3.0"} 35 "ocaml" {>= "4.08"} 36 "fmt" {>= "0.8.7"} 37 "ppx_sexp_conv" {>= "v0.9.0"} 38 "sexplib" 39 "alcotest" {>= "1.7.0" & with-test} 40 "odoc" {with-doc} 41] 42conflicts: [ 43 "result" {< "1.5"} 44 "rresult" {< "0.7.0"} 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.2.5/dockerfile-8.2.5.tbz" 64 checksum: [ 65 "sha256=4b4f450ac1332b32dc13975434592139c68f45657b6623b56cfaf1da7d714f26" 66 "sha512=cc69a3e535c304b33c9af18b50d8550160184deb0b0a81aedc16c52a148cee0a99283ec8d350286fce64c316b473693372b565c809d4c590d4f698e8e395a98d" 67 ] 68} 69x-commit-hash: "2e407583a707ae7382b4e5bb3ea5a772f4f6b04d"