mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 15:13:46 +00:00
669cfc195f
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
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";
|
|
};
|
|
}
|