forked from ocaml-ppx/ppx_import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathppx_import.opam
25 lines (23 loc) · 1.04 KB
/
ppx_import.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
description: "A syntax extension for importing declarations from interface files"
synopsis: "A syntax extension for importing declarations from interface files"
name: "ppx_import"
opam-version: "2.0"
maintainer: "whitequark <[email protected]>"
authors: [ "whitequark <[email protected]>" ]
homepage: "https://github.com/ocaml-ppx/ppx_import"
doc: "https://ocaml-ppx.github.io/ppx_import/"
license: "MIT"
bug-reports: "https://github.com/ocaml-ppx/ppx_import/issues"
dev-repo: "git+https://github.com/ocaml-ppx/ppx_import.git"
tags: [ "syntax" ]
depends: [
"ocaml" { >= "4.04.2" & < "4.12" }
"dune" { >= "1.2.0" }
"ppx_tools_versioned" { >= "5.2.2" }
"ocaml-migrate-parsetree" { >= "1.2.0" }
"ounit" { with-test }
"ppx_deriving" { with-test & >= "4.2.1" }
]
build: [["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] { with-test }
]