nixpkgs/pkgs/development/ocaml-modules/janestreet/ppx-compare.nix

16 lines
457 B
Nix
Raw Normal View History

{lib, buildOcamlJane,
2016-09-13 22:21:59 +00:00
ppx_core, ppx_driver, ppx_tools, ppx_type_conv}:
2019-08-13 21:52:01 +00:00
buildOcamlJane {
2016-09-13 22:21:59 +00:00
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";
2016-09-13 22:21:59 +00:00
maintainers = [ maintainers.maurer ];
license = licenses.asl20;
};
}