mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 12:44:44 +00:00
37 lines
492 B
Nix
37 lines
492 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
dune,
|
|
csexp,
|
|
stdune,
|
|
ocamlc-loc,
|
|
ordering,
|
|
pp,
|
|
xdg,
|
|
dyn,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "dune-rpc";
|
|
inherit (dune) src version;
|
|
|
|
dontAddPrefix = true;
|
|
|
|
propagatedBuildInputs = [
|
|
csexp
|
|
stdune
|
|
ocamlc-loc
|
|
ordering
|
|
pp
|
|
xdg
|
|
dyn
|
|
];
|
|
|
|
meta = {
|
|
description = "Library to connect and control a running dune instance";
|
|
inherit (dune.meta) homepage;
|
|
maintainers = [ ];
|
|
license = lib.licenses.mit;
|
|
};
|
|
}
|