lol

ppx_variants_conv: init at 113.33.03

+16
+14
pkgs/development/ocaml-modules/janestreet/ppx-variants-conv.nix
··· 1 + {stdenv, buildOcamlJane, 2 + ppx_core, ppx_tools, ppx_type_conv, sexplib}: 3 + 4 + buildOcamlJane rec { 5 + name = "ppx_variants_conv"; 6 + hash = "0kgal8b9yh7wrd75hllb9fyl6zbksfnr9k7pykpzdm3js98dirhn"; 7 + propagatedBuildInputs = [ ppx_core ppx_tools ppx_type_conv sexplib]; 8 + 9 + meta = with stdenv.lib; { 10 + description = "Generation of accessor and iteration functions for ocaml variant types."; 11 + maintainers = [ maintainers.maurer ]; 12 + license = licenses.asl20; 13 + }; 14 + }
+2
pkgs/top-level/all-packages.nix
··· 5551 5551 ppx_sexp_value = callPackage ../development/ocaml-modules/janestreet/ppx-sexp-value.nix {}; 5552 5552 5553 5553 ppx_typerep_conv = callPackage ../development/ocaml-modules/janestreet/ppx-typerep-conv.nix {}; 5554 + 5555 + ppx_variants_conv = callPackage ../development/ocaml-modules/janestreet/ppx-variants-conv.nix {}; 5554 5556 }; 5555 5557 5556 5558 ocamlPackages = recurseIntoAttrs ocamlPackages_4_01_0;