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

16 lines
516 B
Nix
Raw Normal View History

2016-09-13 22:20:16 +00:00
{stdenv, buildOcamlJane,
ppx_core, ppx_deriving, ppx_driver, ppx_tools}:
2019-08-13 21:52:01 +00:00
buildOcamlJane {
2016-09-13 22:20:16 +00:00
name = "ppx_type_conv";
hash = "0gv0mqwn97dwrfm6rj442565y8dz7kiq8s8vadnhywrl7j4znqyq";
propagatedBuildInputs =
[ ppx_core ppx_deriving ppx_driver ppx_tools ];
meta = with stdenv.lib; {
description = "The type_conv library factors out functionality needed by different preprocessors that generate code from type specifications";
2016-09-13 22:20:16 +00:00
maintainers = [ maintainers.maurer ];
license = licenses.asl20;
};
}