nixpkgs/pkgs/development/ocaml-modules/notty/default.nix

39 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, ocb-stubblr
2016-11-03 02:06:14 +00:00
, result, uucp, uuseg, uutf
, lwt ? null }:
with stdenv.lib;
2020-04-14 09:16:53 +00:00
if !versionAtLeast ocaml.version "4.05"
then throw "notty is not available for OCaml ${ocaml.version}"
else
2016-11-03 02:06:14 +00:00
let withLwt = lwt != null; in
2016-11-03 02:06:14 +00:00
stdenv.mkDerivation rec {
2020-04-14 09:16:53 +00:00
version = "0.2.2";
name = "ocaml${ocaml.version}-notty-${version}";
2016-11-03 02:06:14 +00:00
src = fetchurl {
url = "https://github.com/pqwy/notty/releases/download/v${version}/notty-${version}.tbz";
2020-04-14 09:16:53 +00:00
sha256 = "1y3hx8zjri3x50nyiqal5gak1sw54gw3xssrqbj7srinvkdmrz1q";
2016-11-03 02:06:14 +00:00
};
buildInputs = [ ocaml findlib ocamlbuild topkg ocb-stubblr ];
2016-11-03 02:06:14 +00:00
propagatedBuildInputs = [ result uucp uuseg uutf ] ++
optional withLwt lwt;
2016-11-03 02:06:14 +00:00
buildPhase = topkg.buildPhase
2017-04-11 16:08:51 +00:00
+ " --with-lwt ${boolToString withLwt}";
2016-11-03 02:06:14 +00:00
inherit (topkg) installPhase;
2016-11-03 02:06:14 +00:00
meta = {
homepage = "https://github.com/pqwy/notty";
inherit (ocaml.meta) platforms;
2016-11-03 02:06:14 +00:00
description = "Declarative terminal graphics for OCaml";
license = licenses.isc;
maintainers = with maintainers; [ sternenseemann ];
};
}