about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/dune-rpc/default.nix
blob: 569be123794c2a4eb78e29a418397f556856ef7d (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, csexp, stdune, ordering, pp, xdg, dyn }:

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

  duneVersion = "3";

  dontAddPrefix = true;

  propagatedBuildInputs = [ csexp stdune ordering pp xdg dyn ];

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

  meta = with lib; {
    description = "Library to connect and control a running dune instance";
    inherit (dune_3.meta) homepage;
    maintainers = with lib.maintainers; [ ];
    license = licenses.mit;
  };
}