2017-11-07 01:12:31 +00:00
|
|
|
{ stdenv, buildOcaml, fetchurl, libev, ocaml, findlib, jbuilder, zed, lwt_react }:
|
2014-07-20 17:22:16 +01:00
|
|
|
|
2017-07-02 13:22:53 +01:00
|
|
|
assert stdenv.lib.versionAtLeast ocaml.version "4.02";
|
2015-01-28 10:09:23 +00:00
|
|
|
|
2017-04-22 19:36:23 +01:00
|
|
|
buildOcaml rec {
|
2017-11-07 01:12:31 +00:00
|
|
|
version = "1.12.0";
|
2017-04-22 19:36:23 +01:00
|
|
|
name = "lambda-term";
|
2014-07-20 17:22:16 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-06-06 12:08:43 +01:00
|
|
|
url = "https://github.com/diml/lambda-term/archive/${version}.tar.gz";
|
2017-11-07 01:12:31 +00:00
|
|
|
sha256 = "129m5jb015rqm6k3k25m1i2217vhz26n8sa7z113vjv4gs0bcd3d";
|
2014-07-20 17:22:16 +01:00
|
|
|
};
|
|
|
|
|
2017-11-07 01:12:31 +00:00
|
|
|
buildInputs = [ libev ocaml findlib jbuilder ];
|
2014-07-20 17:22:16 +01:00
|
|
|
|
2017-07-02 13:22:53 +01:00
|
|
|
propagatedBuildInputs = [ zed lwt_react ];
|
2014-07-20 17:22:16 +01:00
|
|
|
|
2017-11-07 01:12:31 +00:00
|
|
|
buildPhase = "jbuilder build -p lambda-term";
|
|
|
|
|
2017-07-02 13:22:53 +01:00
|
|
|
installPhase = ''
|
|
|
|
${jbuilder.installPhase}
|
|
|
|
mv $out/lib/ocaml/${ocaml.version}/site-lib/{stubslibs,lambda-term}/dlllambda_term_stubs.so
|
|
|
|
'';
|
2014-07-20 17:22:16 +01:00
|
|
|
|
2017-04-22 19:36:23 +01:00
|
|
|
hasSharedObjects = true;
|
|
|
|
|
2014-07-20 17:22:16 +01:00
|
|
|
meta = { description = "Terminal manipulation library for OCaml";
|
|
|
|
longDescription = ''
|
|
|
|
Lambda-term is a cross-platform library for
|
|
|
|
manipulating the terminal. It provides an abstraction for keys,
|
|
|
|
mouse events, colors, as well as a set of widgets to write
|
|
|
|
curses-like applications.
|
|
|
|
|
|
|
|
The main objective of lambda-term is to provide a higher level
|
|
|
|
functional interface to terminal manipulation than, for example,
|
|
|
|
ncurses, by providing a native OCaml interface instead of bindings to
|
|
|
|
a C library.
|
|
|
|
|
|
|
|
Lambda-term integrates with zed to provide text edition facilities in
|
|
|
|
console applications.
|
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = https://github.com/diml/lambda-term;
|
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2015-12-24 17:49:07 +00:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
2014-07-20 17:22:16 +01:00
|
|
|
maintainers = [
|
|
|
|
stdenv.lib.maintainers.gal_bolle
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|