Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
643 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildDunePackage,
ocaml,
landmarks,
ppxlib,
}:
buildDunePackage {
pname = "landmarks-ppx";
minimalOCamlVersion = "4.08";
inherit (landmarks) src version;
buildInputs = [ ppxlib ];
propagatedBuildInputs = [ landmarks ];
doCheck = lib.versionAtLeast ocaml.version "4.08" && lib.versionOlder ocaml.version "5.0";
meta = landmarks.meta // {
description = "Preprocessor instrumenting code using the landmarks library";
longDescription = ''
Automatically or semi-automatically instrument your code using
landmarks library.
'';
broken = lib.versionAtLeast ppxlib.version "0.36";
};
}