summary refs log blame commit diff
path: root/pkgs/development/ocaml-modules/janestreet/ppx-assert.nix
blob: b61874d3a7ea88c9fc83a8a75b780d1f7f94f6f2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                                                
                                                                                    



                                         
{stdenv, buildOcamlJane,
 ppx_compare, ppx_core, ppx_driver, ppx_here, ppx_sexp_conv, ppx_tools, ppx_type_conv, sexplib}:

buildOcamlJane rec {
  name = "ppx_assert";
  hash = "0n7fa1j79ykbkhp8xz0ksg5096asri5d0msshsaqhw5fz18chvz4";
  propagatedBuildInputs =
    [ ppx_compare ppx_core ppx_driver ppx_here ppx_sexp_conv ppx_tools
      ppx_type_conv sexplib ];

  meta = with stdenv.lib; {
    description = "Assert-like extension nodes that raise useful errors on failure";
    maintainers = [ maintainers.maurer ];
    license = licenses.asl20;
  };
}