ppx_sexp_value: init at 113.33.03

This commit is contained in:
Matthew Maurer 2016-09-13 19:01:51 -04:00
parent 246fd021bd
commit 4de0724e8c
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{stdenv, buildOcamlJane,
ppx_core, ppx_driver, ppx_here, ppx_sexp_conv, ppx_tools}:
buildOcamlJane rec {
name = "ppx_sexp_value";
hash = "04602ppqfwx33ghjywam00hlqqzsz4d99r60k9q0v1mynk9pjhj0";
propagatedBuildInputs = [ ppx_core ppx_driver ppx_here ppx_sexp_conv ppx_tools ];
meta = with stdenv.lib; {
description = "A ppx rewriter that simplifies building S-Expression from OCaml Values.";
maintainers = [ maintainers.maurer ];
license = licenses.asl20;
};
}

View file

@ -5547,6 +5547,8 @@ in
ppx_pipebang = callPackage ../development/ocaml-modules/janestreet/ppx-pipebang.nix {};
ppx_sexp_message = callPackage ../development/ocaml-modules/janestreet/ppx-sexp-message.nix {};
ppx_sexp_value = callPackage ../development/ocaml-modules/janestreet/ppx-sexp-value.nix {};
};
ocamlPackages = recurseIntoAttrs ocamlPackages_4_01_0;