lambda-term: update from 1.6 to 1.8
This commit is contained in:
parent
66e2f50416
commit
a931de00b3
|
@ -0,0 +1,42 @@
|
|||
{ stdenv, fetchurl, libev, ocaml, findlib, ocaml_lwt, ocaml_react, zed, camlp4 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.6";
|
||||
name = "lambda-term-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = https://github.com/diml/lambda-term/archive/1.6.tar.gz;
|
||||
sha256 = "1rhfixdgpylxznf6sa9wr31wb4pjzpfn5mxhxqpbchmpl2afwa09";
|
||||
};
|
||||
|
||||
buildInputs = [ libev ocaml findlib ocaml_lwt ocaml_react ];
|
||||
|
||||
propagatedBuildInputs = [ camlp4 zed ];
|
||||
|
||||
createFindlibDestdir = true;
|
||||
|
||||
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;
|
||||
platforms = ocaml.meta.platforms;
|
||||
branch = "1.6";
|
||||
maintainers = [
|
||||
stdenv.lib.maintainers.gal_bolle
|
||||
];
|
||||
};
|
||||
}
|
|
@ -1,17 +1,19 @@
|
|||
{ stdenv, fetchurl, libev, ocaml, findlib, ocaml_lwt, ocaml_react, zed, camlp4 }:
|
||||
|
||||
assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.01";
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.6";
|
||||
version = "1.8";
|
||||
name = "lambda-term-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = https://github.com/diml/lambda-term/archive/1.6.tar.gz;
|
||||
sha256 = "1rhfixdgpylxznf6sa9wr31wb4pjzpfn5mxhxqpbchmpl2afwa09";
|
||||
url = https://github.com/diml/lambda-term/archive/1.8.tar.gz;
|
||||
sha256 = "0hy11x48q5bbh9czjp0w756cyxzr2c6qcnfm5n9f0i1l4qljwpgc";
|
||||
};
|
||||
|
||||
buildInputs = [ libev ocaml findlib ocaml_lwt ocaml_react ];
|
||||
buildInputs = [ libev ocaml findlib ocaml_react ];
|
||||
|
||||
propagatedBuildInputs = [ camlp4 zed ];
|
||||
propagatedBuildInputs = [ camlp4 zed ocaml_lwt ];
|
||||
|
||||
createFindlibDestdir = true;
|
||||
|
||||
|
|
|
@ -3822,7 +3822,11 @@ let
|
|||
gtkmathview = callPackage ../development/libraries/gtkmathview { };
|
||||
};
|
||||
|
||||
lambdaTerm = callPackage ../development/ocaml-modules/lambda-term { };
|
||||
lambdaTerm-1_6 = callPackage ../development/ocaml-modules/lambda-term/1.6.nix { };
|
||||
lambdaTerm =
|
||||
if lib.versionOlder "4.01" ocaml_version
|
||||
then callPackage ../development/ocaml-modules/lambda-term { }
|
||||
else lambdaTerm-1_6;
|
||||
|
||||
macaque = callPackage ../development/ocaml-modules/macaque { };
|
||||
|
||||
|
|
Loading…
Reference in New Issue