Files
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.

41 lines
559 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildDunePackage,
dune_3,
csexp,
stdune,
ocamlc-loc,
ordering,
xdg,
dyn,
}:
buildDunePackage {
pname = "dune-rpc";
inherit (dune_3) src version;
duneVersion = "3";
dontAddPrefix = true;
propagatedBuildInputs = [
csexp
stdune
ocamlc-loc
ordering
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 = [ ];
license = licenses.mit;
};
}