summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/cppo/ocamlbuild.nix
blob: 633dc6bc7bf688f2abe986480d2129badaca2626 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, buildDunePackage, cppo, ocamlbuild }:

if !lib.versionAtLeast (lib.getVersion cppo) "1.6"
then cppo
else

buildDunePackage rec {
  pname = "cppo_ocamlbuild";

  inherit (cppo) version useDune2 src;

  propagatedBuildInputs = [ ocamlbuild ];

  meta = cppo.meta // {
    description = "Plugin to use cppo with ocamlbuild";
  };
}