about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/dune-action-plugin/default.nix
blob: c39239525d18957bc0f63f72c8c85ef43d0985f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, buildDunePackage, dune_3, dune-glob, dune-private-libs }:

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

  duneVersion = "3";

  dontAddPrefix = true;

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

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