forked from mirrors/nixpkgs
ppx_expect: init at 113.33.03
This commit is contained in:
parent
e485e9b6d3
commit
794b4fbfb9
19
pkgs/development/ocaml-modules/janestreet/ppx-expect.nix
Normal file
19
pkgs/development/ocaml-modules/janestreet/ppx-expect.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue