fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / development / ocaml-modules / landmarks-ppx / default.nix
blob8025fb90303ce5e1685662d8ae640fa3ed0f20a5
2   lib,
3   buildDunePackage,
4   ocaml,
5   landmarks,
6   ppxlib,
7 }:
9 buildDunePackage {
10   pname = "landmarks-ppx";
11   minimalOCamlVersion = "4.08";
13   inherit (landmarks) src version;
15   buildInputs = [ ppxlib ];
16   propagatedBuildInputs = [ landmarks ];
18   doCheck = lib.versionAtLeast ocaml.version "4.08" && lib.versionOlder ocaml.version "5.0";
20   meta = landmarks.meta // {
21     description = "Preprocessor instrumenting code using the landmarks library";
22   };