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

buildOcamlJane {
  name = "re2";
  hash = "0fw5jscb1i17aw8v4l965zw20kyimhfnmf4w83wqaaxkqy3l6fqw";
  buildInputs = [ rsync ];
  propagatedBuildInputs =
    [ bin_prot core_kernel 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/re2";
    description = "OCaml bindings for RE2";
    maintainers = [ maintainers.maurer ];
    license = licenses.asl20;
  };
}