mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
20 lines
714 B
Nix
20 lines
714 B
Nix
{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;
|
|
};
|
|
}
|