|
1 |
| -opam-version: "1.2" |
| 1 | +opam-version: "2.0" |
2 | 2 |
|
3 | 3 | authors: ["Jérémie Dimino"]
|
4 | 4 | homepage: "https://github.com/ocaml-community/lambda-term"
|
5 | 5 | bug-reports: "https://github.com/ocaml-community/lambda-term/issues"
|
6 | 6 | dev-repo: "git://github.com/ocaml-community/lambda-term.git"
|
7 | 7 | license: "BSD3"
|
8 | 8 | build: [
|
9 |
| - ["dune" "subst"] {pinned} |
10 | 9 | ["dune" "build" "-p" name "-j" jobs]
|
| 10 | + ["dune" "runtest" "-p" name "-j" jobs] {with-test} |
11 | 11 | ]
|
12 | 12 | depends: [
|
13 |
| - "lwt" {>= "2.7.0"} |
| 13 | + "ocaml" {>= "4.02.3"} |
| 14 | + "lwt" {>= "4.0.0"} |
14 | 15 | "lwt_log"
|
15 | 16 | "react"
|
16 |
| - "zed" {>= "2.0" & < "3.0"} |
17 |
| - "camomile" {>= "0.8.6"} |
| 17 | + "zed" {>= "2.0.3" & < "3.0"} |
| 18 | + "camomile" {>= "1.0.1"} |
18 | 19 | "lwt_react"
|
19 |
| - "dune" {build & >= "1.0.0"} |
| 20 | + "dune" {>= "1.0.0"} |
20 | 21 | ]
|
21 |
| -build-test: [["dune" "runtest" "-p" name "-j" jobs]] |
22 |
| -available: [ ocaml-version >= "4.02.3" ] |
| 22 | +synopsis: "Terminal manipulation library for OCaml" |
| 23 | +description: """ |
| 24 | +Lambda-term is a cross-platform library for manipulating the terminal. It |
| 25 | +provides an abstraction for keys, mouse events, colors, as well as a set of |
| 26 | +widgets to write curses-like applications. The main objective of lambda-term is |
| 27 | +to provide a higher level functional interface to terminal manipulation than, |
| 28 | +for example, ncurses, by providing a native OCaml interface instead of bindings |
| 29 | +to a C library. Lambda-term integrates with zed to provide text edition |
| 30 | +facilities in console applications.""" |
0 commit comments