forked from logseq/mldoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmldoc.opam
46 lines (46 loc) · 1004 Bytes
/
mldoc.opam
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
43
44
45
46
opam-version: "2.0"
synopsis:
"Another Org-mode and Markdown parser implemented using OCaml and Angstrom"
description:
"Another Org-mode and Markdown parser implemented using OCaml and Angstrom."
maintainer: ["logseq team"]
authors: ["tiensonqin <[email protected]>" "RCmerci <[email protected]>"]
homepage: "https://github.com/logseq/mldoc"
bug-reports: "https://github.com/logseq/mldoc/issues"
depends: [
"dune" {>= "2.8"}
"ocaml" {>= "4.11.1"}
"angstrom"
"cmdliner"
"core"
"core_bench"
"js_of_ocaml"
"js_of_ocaml-ppx"
"ppx_deriving_yojson"
"uri"
"yojson"
"lwt"
"xmlm"
"odoc" {with-doc}
"alcotest" {with-test}
"qcheck" {with-test}
"qcheck-alcotest" {with-test}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
pin-depends: [
[ "angstrom.dev" "git://github.com/logseq/angstrom#fork" ]
[ "xmlm.dev" "git://github.com/logseq/xmlm#fork" ]
]