this repo has no description
1opam-version: "2.0"
2maintainer: "jeremie@dimino.org"
3authors: ["Jérémie Dimino"]
4homepage: "https://github.com/ocaml-community/lambda-term"
5bug-reports: "https://github.com/ocaml-community/lambda-term/issues"
6dev-repo: "git+https://github.com/ocaml-community/lambda-term.git"
7license: "BSD-3-Clause"
8build: [
9 ["dune" "subst"] {dev}
10 ["dune" "build" "-p" name "-j" jobs]
11 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
12]
13depends: [
14 "ocaml" {>= "4.02.3"}
15 "lwt" {>= "4.0.0"}
16 "lwt_log"
17 "react"
18 "zed" {>= "2.0" & < "3.0"}
19 "camomile" {>= "0.8.6" & < "2.0.0"}
20 "lwt_react"
21 "dune" {>= "1.0.0"}
22]
23synopsis: "Terminal manipulation library for OCaml"
24description: """
25Lambda-term is a cross-platform library for manipulating the terminal. It
26provides an abstraction for keys, mouse events, colors, as well as a set of
27widgets to write curses-like applications. The main objective of lambda-term is
28to provide a higher level functional interface to terminal manipulation than,
29for example, ncurses, by providing a native OCaml interface instead of bindings
30to a C library. Lambda-term integrates with zed to provide text edition
31facilities in console applications."""
32url {
33 src:
34 "https://github.com/ocaml-community/lambda-term/releases/download/2.0/lambda-term-2.0.tbz"
35 checksum: [
36 "sha256=3f17ccce3d214a6de868bf21f00cd66f15fd3a9a575942d93a2d614f4b9456e8"
37 "md5=9284c51c2ef18ebf6c17281879f2ff13"
38 ]
39}