about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/janestreet/ppx-sexp-value.nix
blob: eaaf04ffe6c1849bd9989ccf2825a24a30c5ace3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{lib, buildOcamlJane,
 ppx_core, ppx_driver, ppx_here, ppx_sexp_conv, ppx_tools}:

buildOcamlJane {
  pname = "ppx_sexp_value";
  hash = "04602ppqfwx33ghjywam00hlqqzsz4d99r60k9q0v1mynk9pjhj0";
  propagatedBuildInputs = [ ppx_core ppx_driver ppx_here ppx_sexp_conv ppx_tools ];

  meta = with lib; {
    description = "A ppx rewriter that simplifies building S-Expression from OCaml Values";
    maintainers = [ maintainers.maurer ];
    license = licenses.asl20;
  };
}