about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/janestreet/ppx-typerep-conv.nix
blob: 472ec19b558849cf6132c7f2d3d71b1dd9587e41 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{stdenv, buildOcamlJane,
 ppx_core, ppx_tools, ppx_type_conv, typerep}:

buildOcamlJane {
  name = "ppx_typerep_conv";
  hash = "0dldlx73r07j6w0i7h4hxly0v678naa79na5rafsk2974gs5ih9g";
  propagatedBuildInputs = [ ppx_core ppx_tools ppx_type_conv typerep ];

  meta = with stdenv.lib; {
    description = "Automatic generation of runtime types from type definitions";
    maintainers = [ maintainers.maurer ];
    license = licenses.asl20;
  };
}