ppx_custom_printf: init at 113.33.03

This commit is contained in:
Matthew Maurer 2016-09-13 18:48:04 -04:00
parent d862e9a6a1
commit bf2299bd48
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{stdenv, buildOcamlJane,
ppx_core, ppx_driver, ppx_sexp_conv, ppx_tools}:
buildOcamlJane rec {
name = "ppx_custom_printf";
hash = "06y85m6ky376byja4w7gdwd339di5ag0xrf0czkylzjsnylhdr85";
propagatedBuildInputs = [ ppx_core ppx_driver ppx_sexp_conv ppx_tools ];
meta = with stdenv.lib; {
description = "Extensions to printf-style format-strings for user-defined string conversion.";
maintainers = [ maintainers.maurer ];
license = licenses.asl20;
};
}

View file

@ -5533,6 +5533,8 @@ in
ppx_bench = callPackage ../development/ocaml-modules/janestreet/ppx-bench.nix {};
ppx_bin_prot = callPackage ../development/ocaml-modules/janestreet/ppx-bin-prot.nix {};
ppx_custom_printf = callPackage ../development/ocaml-modules/janestreet/ppx-custom-printf.nix {};
};
ocamlPackages = recurseIntoAttrs ocamlPackages_4_01_0;