nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildDunePackage,
4 ocaml,
5 landmarks,
6 ppxlib,
7}:
8
9buildDunePackage {
10 pname = "landmarks-ppx";
11
12 inherit (landmarks) src version;
13
14 buildInputs = [ ppxlib ];
15 propagatedBuildInputs = [ landmarks ];
16
17 doCheck = lib.versionAtLeast ocaml.version "5.1";
18
19 meta = landmarks.meta // {
20 description = "Preprocessor instrumenting code using the landmarks library";
21 longDescription = ''
22 Automatically or semi-automatically instrument your code using
23 landmarks library.
24 '';
25 broken = lib.versionAtLeast ppxlib.version "0.36";
26 };
27}