depot/third_party/nixpkgs/pkgs/development/ocaml-modules/janestreet/ppx-compare.nix
Default email a5adf1ddd8 Project import generated by Copybara.
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
2021-01-15 23:18:51 +01:00

15 lines
457 B
Nix

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