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

37 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, ocaml, findlib, ocamlbuild }:
2014-10-28 13:00:48 +00:00
stdenv.mkDerivation rec {
2014-10-28 13:00:48 +00:00
version = "0.7";
name = "ocaml${ocaml.version}-ansiterminal-${version}";
2014-10-28 13:00:48 +00:00
src = fetchurl {
url = "https://github.com/Chris00/ANSITerminal/releases/download/${version}/ANSITerminal-${version}.tar.gz";
sha256 = "03pqfxvw9pa9720l8i5fgxky1qx70kw6wxbczd5i50xi668lh0i9";
2014-10-28 13:00:48 +00:00
};
buildInputs = [ ocaml findlib ocamlbuild ];
2014-10-28 13:00:48 +00:00
configurePhase = "ocaml setup.ml -configure --prefix $out";
buildPhase = "ocaml setup.ml -build";
installPhase = "ocaml setup.ml -install";
createFindlibDestdir = true;
meta = with stdenv.lib; {
homepage = "https://github.com/Chris00/ANSITerminal";
2014-10-28 13:00:48 +00: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;
platforms = ocaml.meta.platforms or [];
2014-10-28 13:00:48 +00:00
maintainers = [ maintainers.jirkamarsik ];
};
}