lol

ppx_typerep_conv: init at 113.33.03

+16
+14
pkgs/development/ocaml-modules/janestreet/ppx-typerep-conv.nix
··· 1 + {stdenv, buildOcamlJane, 2 + ppx_core, ppx_tools, ppx_type_conv, typerep}: 3 + 4 + buildOcamlJane rec { 5 + name = "ppx_typerep_conv"; 6 + hash = "0dldlx73r07j6w0i7h4hxly0v678naa79na5rafsk2974gs5ih9g"; 7 + propagatedBuildInputs = [ ppx_core ppx_tools ppx_type_conv typerep ]; 8 + 9 + meta = with stdenv.lib; { 10 + description = "Automatic generation of runtime types from type definitions"; 11 + maintainers = [ maintainers.maurer ]; 12 + license = licenses.asl20; 13 + }; 14 + }
+2
pkgs/top-level/all-packages.nix
··· 5549 5549 ppx_sexp_message = callPackage ../development/ocaml-modules/janestreet/ppx-sexp-message.nix {}; 5550 5550 5551 5551 ppx_sexp_value = callPackage ../development/ocaml-modules/janestreet/ppx-sexp-value.nix {}; 5552 + 5553 + ppx_typerep_conv = callPackage ../development/ocaml-modules/janestreet/ppx-typerep-conv.nix {}; 5552 5554 }; 5553 5555 5554 5556 ocamlPackages = recurseIntoAttrs ocamlPackages_4_01_0;