summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/landmarks-ppx/default.nix
blob: 06923412f2f07d9cac2e1e06f10e8243818cfa96 (plain)
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
{
  buildDunePackage,
  landmarks,
  ppxlib,
}:

buildDunePackage {
  pname = "landmarks-ppx";

  minimalOCamlVersion = "5.3";

  inherit (landmarks) src version;

  buildInputs = [ ppxlib ];
  propagatedBuildInputs = [ landmarks ];

  doCheck = true;

  meta = landmarks.meta // {
    description = "Preprocessor instrumenting code using the landmarks library";
    longDescription = ''
      Automatically or semi-automatically instrument your code using
      landmarks library.
    '';
  };
}