nixpkgs/pkgs/development/ocaml-modules/dune-rpc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
524 B
Nix
Raw Normal View History

2022-11-08 09:38:29 +01:00
{ lib, buildDunePackage, dune_3, csexp, stdune, ordering, pp, xdg, dyn }:
buildDunePackage rec {
pname = "dune-rpc";
inherit (dune_3) src version;
duneVersion = "3";
dontAddPrefix = true;
2022-11-08 09:38:29 +01:00
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;
};
}