ppx_sexp_conv: init at 113.33.03

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

View file

@ -0,0 +1,14 @@
{stdenv, buildOcamlJane,
ppx_core, ppx_tools, ppx_type_conv, sexplib}:
buildOcamlJane rec {
name = "ppx_sexp_conv";
hash = "1kgbmlc11w5jhbhmy5n0f734l44zwyry48342dm5qydi9sfzcgq2";
propagatedBuildInputs = [ ppx_core ppx_tools ppx_type_conv sexplib];
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

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