summary refs log blame commit diff
path: root/pkgs/development/ocaml-modules/janestreet/ppx-type-conv.nix
blob: fc6d9ca0345984ac108dea55a579c55fb3e9c7d6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                
                                                                                                                                                  



                                         
{stdenv, buildOcamlJane,
 ppx_core, ppx_deriving, ppx_driver, ppx_tools}:

buildOcamlJane rec {
  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";
    maintainers = [ maintainers.maurer ];
    license = licenses.asl20;
  };
}