-
Notifications
You must be signed in to change notification settings - Fork 14
/
dune-project
42 lines (33 loc) · 854 Bytes
/
dune-project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
(lang dune 2.7)
(name dream-html)
(version v3.7.0)
(generate_opam_files true)
(license GPL-3.0-or-later)
(authors "Yawar Amin <yawar.amin@gmail.com>")
(maintainers "Yawar Amin <yawar.amin@gmail.com>")
(source
(github yawaramin/dream-html))
(package
(name pure-html)
(synopsis "HTML generator eDSL")
(description
"Write HTML directly in your OCaml source files with editor support.")
(documentation "https://yawaramin.github.io/dream-html/")
(tags (org:yawaramin))
(depends
(uri
(and
(>= 4.4.0)
(< 5.0.0)))))
(package
(name dream-html)
(synopsis "HTML generator eDSL for Dream")
(description
"Write HTML directly in your OCaml source files with editor support.")
(documentation "https://yawaramin.github.io/dream-html/")
(tags (org:yawaramin))
(depends
(pure-html
(= :version))
(dream
(>= 1.0.0~alpha3))))