aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/ocaml-modules/dune-action-plugin/default.nix
blob: 65c55da6e3b34e12ec1394ec06977151d1ea4f66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, buildDunePackage, dune_2, dune-glob, dune-private-libs }:

buildDunePackage rec {
  pname = "dune-action-plugin";
  inherit (dune_2) src version patches;

  useDune2 = true;

  dontAddPrefix = true;

  propagatedBuildInputs = [ dune-glob dune-private-libs ];

  meta = with lib; {
    inherit (dune_2.meta) homepage;
    description = "API for writing dynamic Dune actions";
    maintainers = [ maintainers.marsam ];
    license = licenses.mit;
  };
}