this repo has no description
1opam-version: "2.0"
2synopsis: "Abstract engine for text edition in OCaml"
3description: """
4Zed is an abstract engine for text edition. It can be used to write text
5editors, edition widgets, readlines, ... Zed uses Camomile to fully support the
6Unicode specification, and implements an UTF-8 encoded string type with
7validation, and a rope datastructure to achieve efficient operations on large
8Unicode buffers. Zed also features a regular expression search on ropes. To
9support efficient text edition capabilities, Zed provides macro recording and
10cursor management facilities."""
11maintainer: ["opam-devel@lists.ocaml.org"]
12authors: ["Jérémie Dimino"]
13license: "BSD-3-Clause"
14homepage: "https://github.com/ocaml-community/zed"
15bug-reports: "https://github.com/ocaml-community/zed/issues"
16depends: [
17 "dune" {>= "3.0"}
18 "ocaml" {>= "4.02.3"}
19 "react"
20 "result"
21 "uchar"
22 "uutf"
23 "uucp" {>= "2.0.0"}
24 "uuseg"
25 "odoc" {with-doc}
26]
27build: [
28 ["dune" "subst"] {dev}
29 [
30 "dune"
31 "build"
32 "-p"
33 name
34 "-j"
35 jobs
36 "@install"
37 "@runtest" {with-test}
38 "@doc" {with-doc}
39 ]
40]
41dev-repo: "git+https://github.com/ocaml-community/zed.git"
42url {
43 src:
44 "https://github.com/ocaml-community/zed/releases/download/3.2.1/zed-3.2.1.tbz"
45 checksum: [
46 "sha256=141091d21a03e92eed0efd96ece150c08c619bfbcd1b153a42d8a261b2b57f53"
47 "sha512=5c4c3bda52d3b8ba8618a91ac7864ebebd6020742e812d46f2a1cc78034acfc53b0a9b697424259b24fa84b367e36f154f35d4ac7ed536329294f000c7f52156"
48 ]
49}
50x-commit-hash: "a7f3d7f967ab8cebe99817a0224fc8fbc3c290b5"