about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/visitors/default.nix
blob: c8d9436461aa1e5dcf21231ccdb1a2b4090aba47 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib, buildDunePackage, fetchFromGitLab, ppx_tools, ppx_deriving, result, cppo }:

buildDunePackage rec {
  pname = "visitors";
  version = "20200210";

  useDune2 = true;

  minimumOCamlVersion = "4.02.3";

  src = fetchFromGitLab {
    owner = "fpottier";
    repo = pname;
    rev = version;
    domain = "gitlab.inria.fr";
    sha256 = "12i099h1hc1walabiwqbinnpgcxkc1wn72913v7v6vvyif21rb5a";
  };

  buildInputs = [ cppo ];

  propagatedBuildInputs = [ ppx_tools ppx_deriving result ];

  meta = with lib; {
    homepage = "https://gitlab.inria.fr/fpottier/visitors";
    license = licenses.lgpl21;
    description = "An OCaml syntax extension (technically, a ppx_deriving plugin) which generates object-oriented visitors for traversing and transforming data structures";
    maintainers = [ maintainers.marsam ];
  };
}