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;
};
}