ocaml-notty: init at 0.1.1

This commit is contained in:
sternenseemann 2016-11-03 03:06:14 +01:00
parent 18788cbac7
commit 02388e9ba5
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ stdenv, buildOcaml, fetchFromGitHub, findlib
, result, uucp, uuseg, uutf
, withLwt ? true
, lwt ? null }:
with stdenv.lib;
assert withLwt -> lwt != null;
buildOcaml rec {
version = "0.1.1";
name = "notty";
minimumSupportedOcamlVersion = "4.02";
src = fetchFromGitHub {
owner = "pqwy";
repo = "notty";
rev = "v${version}";
sha256 = "0bw3bq8z2y1rhc20zn13s78sazywyzpg8nmyjch33p7ypxfglf01";
};
buildInputs = [ findlib ];
propagatedBuildInputs = [ result uucp uuseg uutf ] ++
optional withLwt lwt;
configureFlags = [ "--enable-unix" ] ++
optional withLwt ["--enable-lwt"];
configurePhase = "./configure --prefix $out $configureFlags";
meta = with stdenv.lib; {
homepage = https://github.com/pqwy/notty/tree/master;
description = "Declarative terminal graphics for OCaml.";
license = licenses.isc;
maintainers = with maintainers; [ sternenseemann ];
};
}

View file

@ -263,6 +263,10 @@ let
lwt = ocaml_lwt;
};
notty = callPackage ../development/ocaml-modules/notty {
lwt = ocaml_lwt;
};
ocaml_batteries = callPackage ../development/ocaml-modules/batteries { };
comparelib = callPackage ../development/ocaml-modules/comparelib { };