nixpkgs/pkgs/development/ocaml-modules/janestreet/ppx-expect.nix

20 lines
700 B
Nix
Raw Normal View History

{lib, buildOcamlJane,
2016-09-13 23:08:28 +00:00
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}:
2019-08-13 21:52:01 +00:00
buildOcamlJane {
2016-09-13 23:08:28 +00:00
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; {
2016-09-13 23:08:28 +00:00
description = "Cram-like framework for OCaml";
maintainers = [ maintainers.maurer ];
license = licenses.asl20;
};
}