ocaml-textutils: add initial version (112.17.00) to the system

This commit is contained in:
Eric Merritt 2015-05-24 10:50:15 -07:00
parent 59b94c36f8
commit da56bd3002
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{stdenv, buildOcaml, fetchurl, core, pa_ounit, pa_test, sexplib}:
buildOcaml rec {
name = "textutils";
version = "112.17.00";
minimalSupportedOcamlVersion = "4.02";
src = fetchurl {
url = "https://github.com/janestreet/textutils/archive/${version}.tar.gz";
sha256 = "605d9fde66dc2d777721c936aa521e17169c143efaf9ff29619a7f273a7d0052";
};
buildInputs = [ pa_test ];
propagatedBuildInputs = [ core pa_ounit sexplib ];
meta = with stdenv.lib; {
homepage = https://github.com/janestreet/textutils;
description = "";
license = stdenv.lib.licenses.asl20;
maintainers = [ maintainers.ericbmerritt ];
};
}

View File

@ -4325,6 +4325,8 @@ let
camlp5 = camlp5_transitional;
};
textutils = callPackage ../development/ocaml-modules/textutils { };
type_conv_108_08_00 = callPackage ../development/ocaml-modules/type_conv/108.08.00.nix { };
type_conv_109_60_01 = callPackage ../development/ocaml-modules/type_conv/109.60.01.nix { };
type_conv_112_01_01 = callPackage ../development/ocaml-modules/type_conv/112.01.01.nix { };