nixpkgs/pkgs/development/ocaml-modules/janestreet/ppx-sexp-conv.nix

15 lines
500 B
Nix
Raw Normal View History

{lib, buildOcamlJane,
ppx_core, ppx_tools, ppx_type_conv, sexplib}:
2016-09-13 22:37:24 +00:00
2019-08-13 21:52:01 +00:00
buildOcamlJane {
2016-09-13 22:37:24 +00:00
name = "ppx_sexp_conv";
hash = "1kgbmlc11w5jhbhmy5n0f734l44zwyry48342dm5qydi9sfzcgq2";
propagatedBuildInputs = [ ppx_core ppx_tools ppx_type_conv sexplib];
2016-09-13 22:37:24 +00:00
meta = with lib; {
description = "PPX syntax extension that generates code for converting OCaml types to and from s-expressions, as defined in the sexplib library";
2016-09-13 22:37:24 +00:00
maintainers = [ maintainers.maurer ];
license = licenses.asl20;
};
}