nixpkgs/pkgs/development/ocaml-modules/landmarks-ppx/default.nix

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

19 lines
454 B
Nix
Raw Permalink Normal View History

{ 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";
};
}