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.08.0"}
15 "dune" {>= "2.5.0"}
16 "sedlex" { >= "2.0" }
17 "core" {>= "v0.12"}
18 "uutf"
19 "menhir" {>= "20180523"}
20 "ppxlib" {< "0.23.0"}
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.3.1.tar.gz"
29 checksum: [
30 "md5=65dfebc97da6ad5038c6144a864a118d"
31 "sha512=98e42ba1e1e12311c434f88d8931cb308572f7ef96620517dec9d26a5ad5f8e3483dcdae7225c1d3c5f92ce178d0e73544b135a6d6f3e087e11c628d038261f9"
32 ]
33}