ppx_here: init at 113.33.03

This commit is contained in:
Matthew Maurer
2016-09-14 02:34:33 -04:00
parent d51fcdb777
commit 7f861c4add
2 changed files with 16 additions and 0 deletions
@@ -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;
};
}