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.1.4.tar.gz"
29 checksum: [
30 "md5=ec80bbb37b78dff0a4df518380ce183c"
31 "sha512=d20c29e90ef2f33556029bdec76a36a44238f669fa4472ab07ffc3637b5c3e41d4bcf85908d79c53117aef0ee8cf7bfc216592f39fc4c52775ca99a39e196f98"
32 ]
33}