1{stdenv, buildOcaml, fetchurl, core, pa_ounit, pa_test, sexplib}:
2
3buildOcaml rec {
4 name = "textutils";
5 version = "112.17.00";
6
7 minimalSupportedOcamlVersion = "4.02";
8
9 src = fetchurl {
10 url = "https://github.com/janestreet/textutils/archive/${version}.tar.gz";
11 sha256 = "605d9fde66dc2d777721c936aa521e17169c143efaf9ff29619a7f273a7d0052";
12 };
13
14 buildInputs = [ pa_test ];
15 propagatedBuildInputs = [ core pa_ounit sexplib ];
16
17 meta = with stdenv.lib; {
18 homepage = https://github.com/janestreet/textutils;
19 description = "";
20 license = stdenv.lib.licenses.asl20;
21 maintainers = [ maintainers.ericbmerritt ];
22 };
23}