mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-11 06:34:13 +00:00
16 lines
312 B
Nix
16 lines
312 B
Nix
{ buildDunePackage, jsonrpc, lsp }:
|
|
|
|
buildDunePackage {
|
|
pname = "ocaml-lsp-server";
|
|
inherit (jsonrpc) version src;
|
|
useDune2 = true;
|
|
|
|
inherit (lsp) preBuild;
|
|
|
|
buildInputs = lsp.buildInputs ++ [ lsp ];
|
|
|
|
meta = jsonrpc.meta // {
|
|
description = "OCaml Language Server Protocol implementation";
|
|
};
|
|
}
|