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: """
4Inspired by EJS templates, it does currently implements all of its functionnality.
5I plan to implement everything eventually, especially if someone actually want to use this.
6Please contact me if you find this interesting but there is a missing feature that you need !
7"""
8maintainer: "Emile Trotignon emile.trotignon@gmail.com"
9authors: "Emile Trotignon emile.trotignon@gmail.com"
10license: "MIT"
11homepage: "https://github.com/EmileTrotignon/embedded_ocaml_templates"
12bug-reports: "https://github.com/EmileTrotignon/embedded_ocaml_templates/issues"
13dev-repo: "git+https://github.com/EmileTrotignon/embedded_ocaml_templates.git"
14depends: [
15 "ocaml" {>= "4.08.0"}
16 "dune" {>= "2.5.0"}
17 "sedlex" { >= "2.0" }
18 "core" {>= "v0.12"}
19 "uutf"
20 "menhir" {>= "20180523"}
21 "ppxlib" {< "0.23.0"}
22 "ppx_deriving"
23 "containers"]
24build: [
25 ["dune" "subst"] {dev}
26 ["dune" "build" "-p" name "-j" jobs]
27]
28url {
29 src:
30 "https://github.com/EmileTrotignon/embedded_ocaml_templates/archive/0.5.1.tar.gz"
31 checksum: [
32 "md5=540b7c3b5c7d5c21755556272b6ff5d7"
33 "sha512=0756d0a9a4ed247580b3e8818c8e5c53075ffe5604fe139ab30267309ab620fcfca5b0187427dc4bb27ec1ab6c538cc50fb139b5279de4a1774592f5d5af20d1"
34 ]
35}