this repo has no description
1opam-version: "2.0"
2synopsis: "JSX syntax to write TyXML documents"
3description: """
4```reason
5open Tyxml;
6let to_reason = <a href="reasonml.github.io/"> "Reason!" </a>
7```
8
9The TyXML JSX allow to write TyXML documents with reason's JSX syntax.
10It works with textual trees, virtual DOM trees, or any TyXML module.
11"""
12maintainer: ["dev@ocsigen.org"]
13authors: ["The ocsigen team"]
14license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
15homepage: "https://github.com/ocsigen/tyxml"
16doc: "https://ocsigen.org/tyxml/latest/manual/intro"
17bug-reports: "https://github.com/ocsigen/tyxml/issues"
18depends: [
19 "dune" {>= "2.7"}
20 "ocaml" {>= "4.04"}
21 "tyxml" {= version}
22 "tyxml-syntax" {= version}
23 "alcotest" {with-test}
24 "reason" {with-test}
25 "ppxlib" {>= "0.18"}
26 "odoc" {with-doc}
27]
28build: [
29 ["dune" "subst"] {dev}
30 [
31 "dune"
32 "build"
33 "-p"
34 name
35 "-j"
36 jobs
37 "@install"
38 "@runtest" {with-test}
39 "@doc" {with-doc}
40 ]
41]
42dev-repo: "git+https://github.com/ocsigen/tyxml.git"
43url {
44 src:
45 "https://github.com/ocsigen/tyxml/releases/download/4.6.0/tyxml-4.6.0.tbz"
46 checksum: [
47 "sha256=bfeb673c6b4e120a4eca4c48448add47dc3f8d02c2b40f63ffdccc4e91c902dd"
48 "sha512=69750eeaf467014282087bf9628f3278f3e5f00f4c7400358750d208664cfc3f79a5cba16767d2935e53477d1a6862fe08c5b801b69052ec12e09d1a93a5e9b4"
49 ]
50}
51x-commit-hash: "d2916535536f2134bad7793a598ba5b7327cae41"