nixpkgs/pkgs/development/ocaml-modules/janestreet/ppx-assert.nix

17 lines
539 B
Nix
Raw Normal View History

{lib, buildOcamlJane,
2016-09-13 22:38:45 +00:00
ppx_compare, ppx_core, ppx_driver, ppx_here, ppx_sexp_conv, ppx_tools, ppx_type_conv, sexplib}:
2019-08-13 21:52:01 +00:00
buildOcamlJane {
2016-09-13 22:38:45 +00:00
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";
2016-09-13 22:38:45 +00:00
maintainers = [ maintainers.maurer ];
license = licenses.asl20;
};
}