-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathppx_deriving_cmdliner.opam
39 lines (38 loc) · 1.13 KB
/
ppx_deriving_cmdliner.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
opam-version: "2.0"
maintainer: "Seb Mondet <[email protected]>"
authors: [
"Isaac Hodes <[email protected]>"
"B. Arman Aksoy <[email protected]>"
"Seb Mondet <[email protected]>"
"Nick Zalutskiy <[email protected]>"
"Armaël Guéneau <[email protected]>"
"Tom Repetti <[email protected]>"
"Marcello Seri <[email protected]>"
"Sonja Heinze <[email protected]>"
]
homepage: "https://github.com/hammerlab/ppx_deriving_cmdliner"
bug-reports: "https://github.com/hammerlab/ppx_deriving_cmdliner/issues"
dev-repo: "git+https://github.com/hammerlab/ppx_deriving_cmdliner.git"
doc: "http://hammerlab.github.io/ppx_deriving_cmdliner"
license: "MIT"
tags: ["syntax" "cli"]
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
]
run-test: [
["dune" "runtest" "-p" name "-j" jobs]
]
depends: [
"ocaml" {>= "4.08"}
"cmdliner" {>= "1.1.0"}
"result"
"ppx_deriving" {>= "5.0"}
"dune"
"ppxlib" {>= "0.26.0"}
"alcotest" {with-test}
]
synopsis: "Cmdliner.Term.t generator"
description: """
ppx_deriving_cmdliner is a ppx_deriving plugin that generates
a Cmdliner Term.t for a record type."""