-
Notifications
You must be signed in to change notification settings - Fork 29
/
ppx_import.opam
26 lines (24 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
26
opam-version: "2.0"
synopsis: "A syntax extension for importing declarations from interface files"
name: "ppx_import"
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.05.0" & < "4.10.0" }
| ("ocaml" {>= "4.10.0"}
"ppx_sexp_conv" {with-test & >= "v0.13.0"})
"dune" { >= "3.0.0" }
"ppxlib" { >= "0.26.0" }
"ounit" { with-test }
"ppx_deriving" { with-test & >= "4.2.1" }
"sexplib0" { with-test & >= "v0.15.0" }
]
build: [["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] { with-test }
]