summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/janestreet/ppx-assert.nix
blob: 8f4eb7e415100bb966539ed063335cd679acc8c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{lib, buildOcamlJane,
 ppx_compare, ppx_core, ppx_driver, ppx_here, ppx_sexp_conv, ppx_tools, ppx_type_conv, sexplib}:

buildOcamlJane {
  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 lib; {
    description = "Assert-like extension nodes that raise useful errors on failure";
    maintainers = [ maintainers.maurer ];
    license = licenses.asl20;
  };
}