this repo has no description
1opam-version: "2.0"
2homepage: "https://github.com/pqwy/notty"
3dev-repo: "git+https://github.com/pqwy/notty.git"
4bug-reports: "https://github.com/pqwy/notty/issues"
5doc: "http://pqwy.github.io/notty/doc"
6maintainer: "David Kaloper <dk505@cam.ac.uk>"
7license: "ISC"
8synopsis: "Declaring terminals"
9description:
10 "Notty is a declarative terminal library for OCaml structured around a notion
11 of composable images. It tries to abstract away the basic terminal programming
12 model, providing something simpler and more expressive."
13
14
15build: [
16 "ocaml" "pkg/pkg.ml" "build" "--dev-pkg=true" {dev}
17 "--with-lwt" "%{lwt:installed}%"
18]
19depends: [
20 "ocaml" { >= "4.05.0" & < "4.14"}
21 "ocamlbuild" {build}
22 "ocamlfind" {build}
23 "topkg" {build}
24 "ocb-stubblr" {build & >="0.1.0"}
25 "uchar"
26 "uucp" {>= "2.0.0"}
27 "uuseg" {>= "1.0.0"}
28 "uutf" {>= "1.0.0"}
29]
30depopts: [ "lwt" ]
31conflicts: [
32 "ocb-stubblr" {<"0.1.0"}
33 "lwt" {<"2.6.0"}
34]
35
36url {
37 src:
38 "https://github.com/pqwy/notty/releases/download/v0.2.2/notty-0.2.2.tbz"
39 checksum: [
40 "sha256=38fc5cdbdc36667de4c259eb3ef82385eb30d52b54e1e82d287dc42c3fea70f8"
41 "md5=ed22e6958f9e98cc5cee5eab54290735"
42 ]
43}
44authors: "David Kaloper <dk505@cam.ac.uk>"