about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/janestreet/ppx-compare.nix
blob: d70fe6ddd5508f287a957b68b939a50921550b0a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
  };
}