this repo has no description
1opam-version: "2.0"
2maintainer: "opam-devel@lists.ocaml.org"
3authors: ["Jérémie Dimino"]
4homepage: "https://github.com/ocaml-community/zed"
5bug-reports: "https://github.com/ocaml-community/zed/issues"
6dev-repo: "git+https://github.com/ocaml-community/zed.git"
7license: "BSD-3-Clause"
8depends: [
9 "ocaml" {>= "4.02.3"}
10 "jbuilder" {>= "1.0+beta9"}
11 "base-bytes"
12 "camomile" {>= "0.8" & < "2.0.0"}
13 "react"
14]
15build: [
16 ["jbuilder" "subst" "-p" name] {dev}
17 ["jbuilder" "build" "-p" name "-j" jobs]
18 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test}
19]
20synopsis: "Abstract engine for text edition in OCaml"
21description: """
22Zed is an abstract engine for text edition. It can be used to write text
23editors, edition widgets, readlines, ... Zed uses Camomile to fully support the
24Unicode specification, and implements an UTF-8 encoded string type with
25validation, and a rope datastructure to achieve efficient operations on large
26Unicode buffers. Zed also features a regular expression search on ropes. To
27support efficient text edition capabilities, Zed provides macro recording and
28cursor management facilities."""
29url {
30 src:
31 "https://github.com/ocaml-community/zed/releases/download/1.6/zed-1.6.tbz"
32 checksum: [
33 "sha256=74bb48f2ee9f5bd22079582cfe6228d944af19e0d8393a849eae5ee7b88f1e1e"
34 "md5=f75c3094af1a22f9801d5ca5eb2d40e0"
35 ]
36}