3
0
Fork 0
forked from mirrors/nixpkgs

ppx_expect: init at 113.33.03

This commit is contained in:
Matthew Maurer 2016-09-13 19:08:28 -04:00
parent e485e9b6d3
commit 794b4fbfb9
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{stdenv, 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 rec {
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 stdenv.lib; {
description = "Cram-like framework for OCaml";
maintainers = [ maintainers.maurer ];
license = licenses.asl20;
};
}

View file

@ -5553,6 +5553,8 @@ in
ppx_typerep_conv = callPackage ../development/ocaml-modules/janestreet/ppx-typerep-conv.nix {};
ppx_variants_conv = callPackage ../development/ocaml-modules/janestreet/ppx-variants-conv.nix {};
ppx_expect = callPackage ../development/ocaml-modules/janestreet/ppx-expect.nix {};
};
ocamlPackages = recurseIntoAttrs ocamlPackages_4_01_0;