ppx_fields_conv: init at 113.33.03

This commit is contained in:
Matthew Maurer 2016-09-13 18:52:01 -04:00
parent 1f16ade80f
commit f8241a28fb
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{stdenv, buildOcamlJane,
ppx_core, ppx_tools, ppx_type_conv}:
buildOcamlJane rec {
name = "ppx_fields_conv";
hash = "11w9wfjgkv7yxv3rwlwi6m193zan6rhmi45q7n3ddi2s8ls3gra7";
propagatedBuildInputs = [ ppx_core ppx_tools ppx_type_conv ];
meta = with stdenv.lib; {
description = "Generation of accessor and iteration functions for ocaml records.";
maintainers = [ maintainers.maurer ];
license = licenses.asl20;
};
}

View file

@ -5539,6 +5539,8 @@ in
ppx_enumerate = callPackage ../development/ocaml-modules/janestreet/ppx-enumerate.nix {};
ppx_fail = callPackage ../development/ocaml-modules/janestreet/ppx-fail.nix {};
ppx_fields_conv = callPackage ../development/ocaml-modules/janestreet/ppx-fields-conv.nix {};
};
ocamlPackages = recurseIntoAttrs ocamlPackages_4_01_0;