ppx_compare: init at 113.33.03

This commit is contained in:
Matthew Maurer 2016-09-13 18:21:59 -04:00
parent b87abcb3b6
commit d51fcdb777
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,15 @@
{stdenv, buildOcamlJane,
ppx_core, ppx_driver, ppx_tools, ppx_type_conv}:
buildOcamlJane rec {
name = "ppx_compare";
hash = "05cnwxfxm8201lpfmcqkcqfy6plh5c2151jbj4qsnxhlvvjli459";
propagatedBuildInputs =
[ppx_core ppx_driver ppx_tools ppx_type_conv ];
meta = with stdenv.lib; {
description = "Generation of fast comparison functions from type expressions and definitions.";
maintainers = [ maintainers.maurer ];
license = licenses.asl20;
};
}

View File

@ -5519,6 +5519,8 @@ in
ppx_driver = callPackage ../development/ocaml-modules/janestreet/ppx-driver.nix {};
ppx_type_conv = callPackage ../development/ocaml-modules/janestreet/ppx-type-conv.nix {};
ppx_compare = callPackage ../development/ocaml-modules/janestreet/ppx-compare.nix {};
};
ocamlPackages = recurseIntoAttrs ocamlPackages_4_01_0;