this repo has no description
1opam-version: "2.0" 2synopsis: "EML is a simple templating language that lets you generate text with plain OCaml" 3description: """ 4EML is a simple templating language that lets you generate text with plain OCaml 5Inspired by EJS templates 6""" 7maintainer: "Emile Trotignon emile.trotignon@gmail.com" 8authors: "Emile Trotignon emile.trotignon@gmail.com" 9license: "MIT" 10homepage: "https://github.com/EmileTrotignon/embedded_ocaml_templates" 11bug-reports: "https://github.com/EmileTrotignon/embedded_ocaml_templates/issues" 12dev-repo: "git+https://github.com/EmileTrotignon/embedded_ocaml_templates.git" 13depends: [ 14 "ocaml" {>= "4.07.0"} 15 "dune" {>= "2.5.0"} 16 "sedlex" 17 "core" {>= "v0.12" & < "v0.15"} 18 "uutf" 19 "menhir" 20 "ppxlib" 21 "containers"] 22build: [ 23 ["dune" "subst"] {dev} 24 ["dune" "build" "-p" name "-j" jobs] 25] 26url { 27 src: 28 "https://github.com/EmileTrotignon/embedded_ocaml_templates/archive/0.2.tar.gz" 29 checksum: [ 30 "md5=8a7189c85de9edc4f643e8a22b100e9c" 31 "sha512=18184036d47791139fafb97790ae7daf9560f416ad6ea38e267188ed80a6443aa9457d8b5ead753f68b08997189c61b02cc8d04c550d8ce0e5df6202b0c9bef9" 32 ] 33}