2021-01-06 07:11:28 +00:00
|
|
|
{ lib, buildDunePackage, fetchFromGitHub, camomile, react, charInfo_width }:
|
2017-10-21 07:51:10 +00:00
|
|
|
|
2021-01-06 07:11:28 +00:00
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "zed";
|
|
|
|
version = "3.1.0";
|
2014-07-20 16:21:14 +00:00
|
|
|
|
2021-01-06 07:11:28 +00:00
|
|
|
useDune2 = true;
|
2014-07-20 16:21:14 +00:00
|
|
|
|
2021-01-06 07:11:28 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ocaml-community";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
|
|
|
sha256 = "04vr1a94imsghm98iigc35rhifsz0rh3qz2qm0wam2wvp6vmrx0p";
|
2014-07-20 16:21:14 +00:00
|
|
|
};
|
|
|
|
|
2021-01-06 07:11:28 +00:00
|
|
|
propagatedBuildInputs = [ charInfo_width react ];
|
2014-07-20 16:21:14 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Abstract engine for text edition in OCaml";
|
|
|
|
longDescription = ''
|
|
|
|
Zed is an abstract engine for text edition. It can be used to write text editors, edition widgets, readlines, ...
|
|
|
|
|
|
|
|
Zed uses Camomile to fully support the Unicode specification, and implements an UTF-8 encoded string type with validation, and a rope datastructure to achieve efficient operations on large Unicode buffers. Zed also features a regular expression search on ropes.
|
|
|
|
|
|
|
|
To support efficient text edition capabilities, Zed provides macro recording and cursor management facilities.
|
|
|
|
'';
|
2021-01-06 07:11:28 +00:00
|
|
|
inherit (src.meta) homepage;
|
2021-01-11 12:49:15 +00:00
|
|
|
license = lib.licenses.bsd3;
|
2014-07-20 16:21:14 +00:00
|
|
|
maintainers = [
|
2021-01-11 12:49:15 +00:00
|
|
|
lib.maintainers.gal_bolle
|
2014-07-20 16:21:14 +00:00
|
|
|
];
|
|
|
|
};
|
2021-01-06 07:11:28 +00:00
|
|
|
}
|