nixpkgs/pkgs/development/ocaml-modules/janestreet/ppx-assert.nix
2021-01-12 16:33:18 +01:00

17 lines
539 B
Nix

{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;
};
}