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

28 lines
860 B
Nix
Raw Normal View History

{stdenv, fetchurl, libiconvOrNull, ocaml, findlib, ncurses}:
2014-05-15 09:02:32 +00:00
stdenv.mkDerivation {
name = "ocaml-text-0.6";
src = fetchurl {
url = https://forge.ocamlcore.org/frs/download.php/937/ocaml-text-0.6.tar.gz;
sha256 = "0j8gaak0ajnlmn8knvfygqwwzs7awjv5rfn5cbj6qxqbxhjd5m6g";
};
buildInputs = [ocaml findlib ncurses]
++ stdenv.lib.optional (libiconvOrNull != null) libiconvOrNull;
2014-05-15 09:02:32 +00:00
configurePhase =
(stdenv.lib.optionalString (libiconvOrNull != null) "iconv_prefix=${libiconvOrNull} ")
+ "ocaml setup.ml -configure";
2014-05-15 09:02:32 +00:00
createFindlibDestdir = true;
meta = {
homepage = "http://ocaml-text.forge.ocamlcore.org/";
description = "OCaml-Text is a library for dealing with ``text'', i.e. sequence of unicode characters, in a convenient way. ";
license = stdenv.lib.licenses.bsd3;
2014-05-15 09:02:32 +00:00
platforms = ocaml.meta.platforms;
};
}