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.1/lambda-term-2.0.1.tbz" 35 checksum: [ 36 "sha256=541cda520f42bc5551175e0d24ddec8724b9391d52da7c7253f7817972c49a5a" 37 "md5=4b4b8480fe1280e1ed2a34ed93d16675" 38 ] 39}