this repo has no description
1opam-version: "2.0"
2maintainer: "rudi.grinberg@gmail.com"
3authors: ["Rudi Grinberg" "Armaël Guéneau"]
4license: "MIT"
5homepage: "https://github.com/rgrinberg/ocaml-mustache"
6doc: "http://rgrinberg.github.io/mustache/"
7bug-reports: "https://github.com/rgrinberg/ocaml-mustache/issues"
8depends: [
9 "ocaml" {>= "4.03"}
10 "dune" {>= "1.4.0"}
11 "ezjsonm"
12 "menhir" {>= "20180528"}
13 "ounit" {with-test}
14]
15build: [
16 ["dune" "subst"] {dev}
17 ["dune" "build" "-p" name "-j" jobs]
18 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
19]
20dev-repo: "git+https://github.com/rgrinberg/ocaml-mustache.git"
21synopsis: "Mustache logic-less templates in OCaml"
22description: """
23Read and write mustache templates, and render them by providing a json object.
24Contains the `mustache` command line utility for driving logic-less templates.
25"""
26url {
27 src: "https://github.com/rgrinberg/ocaml-mustache/archive/v3.1.0.zip"
28 checksum: [
29 "sha256=8b0a04af0cb897fdba41fd946fa1b6cdb3982ca0db604e13ee0977585ff4c45d"
30 "md5=ee15623d0f699b6aff31904fedf4945e"
31 ]
32}