2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild }:
|
2014-10-28 14:00:48 +01:00
|
|
|
|
2017-10-14 10:06:01 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2014-10-28 14:00:48 +01:00
|
|
|
|
2017-10-14 10:06:01 +02:00
|
|
|
version = "0.7";
|
|
|
|
|
|
|
|
name = "ocaml${ocaml.version}-ansiterminal-${version}";
|
2014-10-28 14:00:48 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-10-14 10:06:01 +02:00
|
|
|
url = "https://github.com/Chris00/ANSITerminal/releases/download/${version}/ANSITerminal-${version}.tar.gz";
|
|
|
|
sha256 = "03pqfxvw9pa9720l8i5fgxky1qx70kw6wxbczd5i50xi668lh0i9";
|
2014-10-28 14:00:48 +01:00
|
|
|
};
|
|
|
|
|
2016-10-08 08:44:25 +02:00
|
|
|
buildInputs = [ ocaml findlib ocamlbuild ];
|
2014-10-28 14:00:48 +01:00
|
|
|
|
|
|
|
configurePhase = "ocaml setup.ml -configure --prefix $out";
|
|
|
|
|
|
|
|
buildPhase = "ocaml setup.ml -build";
|
|
|
|
|
|
|
|
installPhase = "ocaml setup.ml -install";
|
|
|
|
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-10-14 10:06:01 +02:00
|
|
|
homepage = "https://github.com/Chris00/ANSITerminal";
|
2014-10-28 14:00:48 +01:00
|
|
|
description = "A module allowing to use the colors and cursor movements on ANSI terminals";
|
|
|
|
longDescription = ''
|
|
|
|
ANSITerminal is a module allowing to use the colors and cursor
|
|
|
|
movements on ANSI terminals. It also works on the windows shell (but
|
|
|
|
this part is currently work in progress).
|
|
|
|
'';
|
|
|
|
license = licenses.lgpl3;
|
2015-12-24 18:49:07 +01:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
2014-10-28 14:00:48 +01:00
|
|
|
maintainers = [ maintainers.jirkamarsik ];
|
|
|
|
};
|
|
|
|
}
|