summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/janestreet/textutils.nix
blob: 459743f055ab56a11e0d2a7f88cb1cb75e7a3ed3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{stdenv, buildOcamlJane,
 bin_prot, core, fieldslib, sexplib, typerep, variantslib,
 ppx_assert, ppx_bench, ppx_driver, ppx_expect, ppx_inline_test, ppx_jane}:

buildOcamlJane rec {
  name = "textutils";
  hash = "0mkjm9b3k7db7zzrq4403v8qbkgqgkjlz120vcbqh6z7d7ql65vb";
  propagatedBuildInputs =
    [ bin_prot core fieldslib sexplib typerep variantslib
      ppx_assert ppx_bench ppx_driver ppx_expect ppx_inline_test ppx_jane ];

  meta = with stdenv.lib; {
    homepage = https://github.com/janestreet/textutils;
    description = "Text output utilities";
    maintainers = [ maintainers.maurer ];
    license = licenses.asl20;
  };
}