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