summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/janestreet/ppx-expect.nix
blob: 7506e09e30e063783d368c14290328bfa74aa1ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{lib, buildOcamlJane,
 ppx_assert, ppx_compare, ppx_core, ppx_custom_printf, ppx_driver,
 ppx_fields_conv, ppx_here, ppx_inline_test, ppx_sexp_conv, ppx_tools,
 ppx_variants_conv, re, sexplib, variantslib, fieldslib}:

buildOcamlJane {
  name = "ppx_expect";
  hash = "0cwagb4cj3x1vsr19kyfa9pxlvaz9a5v863cahi5glinsh4mzgdx";
  propagatedBuildInputs =
    [ ppx_assert ppx_compare ppx_core ppx_custom_printf ppx_driver
      ppx_fields_conv ppx_here ppx_inline_test ppx_sexp_conv ppx_tools
      ppx_variants_conv re sexplib variantslib fieldslib ];

  meta = with lib; {
    description = "Cram-like framework for OCaml";
    maintainers = [ maintainers.maurer ];
    license = licenses.asl20;
  };
}