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 ["jbuilder" "subst" "-p" name] {dev} 10 ["jbuilder" "build" "-p" name "-j" jobs] 11 ["jbuilder" "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" {>= "1.2" & < "2.0"} 19 "camomile" {>= "0.8.6" & < "2.0.0"} 20 "lwt_react" 21 "jbuilder" {>= "1.0+beta9"} 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/1.13/lambda-term-1.13.tbz" 35 checksum: [ 36 "sha256=adf27e37cb52c9461c718a66f7589103a77eccbcefdd95317545c0e9aee01200" 37 "md5=c13826a97014d4d573b927b623c7e043" 38 ] 39}