this repo has no description
1opam-version: "2.0"
2maintainer: "Török Edwin <edwin@etorok.net>"
3authors: ["Török Edwin <edwin@etorok.net>"]
4homepage: "https://gitlab.com/edwintorok/cmdtui"
5doc: "https://edwintorok.gitlab.io/cmdtui/doc"
6license: "ISC"
7dev-repo: "git+https://gitlab.com/edwintorok/cmdtui.git"
8bug-reports: "https://gitlab.com/edwintorok/cmdtui/issues"
9depends: [
10 "ocaml" {>= "4.02.3"}
11 "jbuilder" {>= "1.0+beta7"}
12 "astring" {>= "0.8.3"}
13 "fmt" {>= "0.8.0"}
14 "lambda-term" {< "2.0"}
15 "cmdliner"
16 "logs"
17 "lwt"
18 "cmdtui"
19]
20build: [
21 ["jbuilder" "subst" "-p" name] {dev}
22 ["jbuilder" "build" "-p" name "-j" jobs]
23 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test}
24]
25synopsis: "Interactive command completion and execution for building REPLs"
26description: """
27cmdtui is a module for declaring commands with completions and actions.
28It can return a dynamically generated list of completions based on partial user
29input.
30The base module doesn't depend on a particular terminal control library,
31and support for `lambda-term` based REPLs is provided in the `cmdtui.lambda-term` subpackage.
32
33cmdtui is distributed under the ISC license."""
34url {
35 src:
36 "https://gitlab.com/edwintorok/cmdtui/uploads/6b3cad4a29a2b1f1a019e1a1ded0e429/cmdtui-0.4.3.tbz"
37 checksum: [
38 "sha256=62047731081fd212af1d85903eda1faa9a072f237e087dd561a169b9a307ead8"
39 "md5=8a792d806efab956df37f2d9316f569f"
40 ]
41}