ppx_here: init at 113.33.03

This commit is contained in:
Matthew Maurer 2016-09-13 18:23:00 -04:00
parent d51fcdb777
commit 7f861c4add
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,14 @@
{stdenv, buildOcamlJane,
ppx_core, ppx_driver}:
buildOcamlJane rec {
name = "ppx_here";
hash = "1mzdgn8k171zkwmbizf1a48l525ny0w3363c7gknpnifcinxniiw";
propagatedBuildInputs = [ ppx_core ppx_driver ];
meta = with stdenv.lib; {
description = "A ppx rewriter that defines an extension node whose value is its source position.";
maintainers = [ maintainers.maurer ];
license = licenses.asl20;
};
}

View File

@ -5521,6 +5521,8 @@ in
ppx_type_conv = callPackage ../development/ocaml-modules/janestreet/ppx-type-conv.nix {};
ppx_compare = callPackage ../development/ocaml-modules/janestreet/ppx-compare.nix {};
ppx_here = callPackage ../development/ocaml-modules/janestreet/ppx-here.nix {};
};
ocamlPackages = recurseIntoAttrs ocamlPackages_4_01_0;