-
Notifications
You must be signed in to change notification settings - Fork 12
/
ppx_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 <seb@mondet.org>"
authors: [
"Isaac Hodes <isaachodes@gmail.com>"
"B. Arman Aksoy <arman@aksoy.org>"
"Seb Mondet <seb@mondet.org>"
"Nick Zalutskiy <nick@const.fun>"
"Armaël Guéneau <armael.gueneau@ens-lyon.fr>"
"Tom Repetti <trepetti@cs.columbia.edu>"
"Marcello Seri <m.seri@rug.nl>"
"Sonja Heinze <sonjaleaheinze@gmail.com>"
]
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."""