this repo has no description
1opam-version: "2.0"
2synopsis: "Declarative Command-line Parsing for OCaml"
3maintainer: ["Mathieu Barbin <opensource@mbarbin.org>"]
4authors: ["Mathieu Barbin"]
5license: "MIT"
6homepage: "https://github.com/mbarbin/cmdlang"
7doc: "https://mbarbin.github.io/cmdlang/"
8bug-reports: "https://github.com/mbarbin/cmdlang/issues"
9depends: [
10 "dune" {>= "3.16"}
11 "ocaml" {>= "4.14"}
12 "odoc" {with-doc}
13]
14build: [
15 ["dune" "subst"] {dev}
16 [
17 "dune"
18 "build"
19 "-p"
20 name
21 "-j"
22 jobs
23 "@install"
24 "@runtest" {with-test}
25 "@doc" {with-doc}
26 ]
27]
28dev-repo: "git+https://github.com/mbarbin/cmdlang.git"
29description: """\
30
31Cmdlang is a library for creating command-line parsers in OCaml.
32Implemented as an OCaml EDSL, its declarative specification language
33lives at the intersection of other well-established similar libraries.
34
35Cmdlang doesn't include an execution engine. Instead, Cmdlang parsers
36are automatically translated to [cmdliner], [core.command], or
37[climate] commands for execution.
38
39[cmdliner]: https://github.com/dbuenzli/cmdliner
40[climate]: https://github.com/gridbugs/climate
41[core.command]: https://github.com/janestreet/core
42
43"""
44tags: [ "cli" ]
45x-maintenance-intent: [ "(latest)" ]
46url {
47 src:
48 "https://github.com/mbarbin/cmdlang/releases/download/0.0.9/cmdlang-0.0.9.tbz"
49 checksum: [
50 "sha256=44fc0027cc27a8d6b511bbde81b0d31306ec1a3d599476d5bd058510f39e87ef"
51 "sha512=e1a18905ff6035eb4c44aed71df0e3d42b8277db9a6e98fe571a3b17428c9ef0a26006cb27b729a60208a8357398decc6a8601caca74dabd2e6de7636bc60b31"
52 ]
53}
54x-commit-hash: "c9c2c1773e374f61f890b4ae36d09a1195010a4c"