aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/ansiterminal/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/ansiterminal/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/ansiterminal/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/ansiterminal/default.nix b/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/ansiterminal/default.nix
new file mode 100644
index 000000000000..7b9f01751517
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/ansiterminal/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchurl, ocaml, findlib, ocamlbuild }:
+
+stdenv.mkDerivation rec {
+
+ version = "0.7";
+
+ name = "ocaml${ocaml.version}-ansiterminal-${version}";
+
+ src = fetchurl {
+ url = "https://github.com/Chris00/ANSITerminal/releases/download/${version}/ANSITerminal-${version}.tar.gz";
+ sha256 = "03pqfxvw9pa9720l8i5fgxky1qx70kw6wxbczd5i50xi668lh0i9";
+ };
+
+ buildInputs = [ ocaml findlib ocamlbuild ];
+
+ 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";
+ 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 [];
+ maintainers = [ maintainers.jirkamarsik ];
+ };
+}