ppx_assert: init at 113.33.03

This commit is contained in:
Matthew Maurer 2016-09-13 18:38:45 -04:00
parent b86e0ad498
commit a89dfb2148
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,16 @@
{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;
};
}

View File

@ -5525,6 +5525,8 @@ in
ppx_here = callPackage ../development/ocaml-modules/janestreet/ppx-here.nix {};
ppx_sexp_conv = callPackage ../development/ocaml-modules/janestreet/ppx-sexp-conv.nix {};
ppx_assert = callPackage ../development/ocaml-modules/janestreet/ppx-assert.nix {};
};
ocamlPackages = recurseIntoAttrs ocamlPackages_4_01_0;