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

25 lines
649 B
Nix
Raw Normal View History

{stdenv, fetchurl, libiconv, ocaml, findlib, ncurses}:
2014-05-15 11:02:32 +02:00
stdenv.mkDerivation {
2015-07-07 00:42:15 +02:00
name = "ocaml-text-0.7.1";
2014-05-15 11:02:32 +02:00
src = fetchurl {
2015-07-07 00:42:15 +02:00
url = "https://github.com/vbmithr/ocaml-text/archive/0.7.1.tar.gz";
sha256 = "0dn096q9gjfj7ibj237mb7lq0742a760zawka6i064qns727qwrg";
2014-05-15 11:02:32 +02:00
};
buildInputs = [ocaml findlib ncurses libiconv];
2014-05-15 11:02:32 +02:00
configurePhase = "iconv_prefix=${libiconv} ocaml setup.ml -configure";
2014-05-15 11:02:32 +02:00
createFindlibDestdir = true;
meta = {
homepage = "http://ocaml-text.forge.ocamlcore.org/";
description = "A library for convenient text manipulation";
license = stdenv.lib.licenses.bsd3;
2014-05-15 11:02:32 +02:00
platforms = ocaml.meta.platforms;
};
}