mcp-language-server: init at 0.1.1

This commit is contained in:
Yifei Huang
2026-01-22 18:45:11 +08:00
parent 605779bf16
commit 404daf6a43
@@ -0,0 +1,33 @@
{
lib,
fetchFromGitHub,
buildGoModule,
}:
buildGoModule rec {
pname = "mcp-language-server";
version = "0.1.1";
src = fetchFromGitHub {
owner = "isaacphi";
repo = pname;
rev = "v${version}";
hash = "sha256-T0wuPSShJqVW+CcQHQuZnh3JOwqUxAKv1OCHwZMr7KM=";
};
subPackages = [ "." ];
proxyVendor = true;
vendorHash = "sha256-niDJB3QhZjz9qIGSjUEcghRpEbPUgsSuK52ncZ21DS8=";
meta = with lib; {
description = "Model Context Protocol server to interact with language servers";
license = licenses.bsd3;
homepage = "https://github.com/isaacphi/mcp-language-server";
mainProgram = "mcp-language-server";
platforms = platforms.unix;
maintainers = with maintainers; [
fayash
];
};
}