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

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

  duneVersion = "3";

  dontAddPrefix = true;

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

  preBuild = ''
    rm -r vendor/csexp
  '';

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