mcp-language-server: init at 0.1.1
This commit is contained in:
@@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user