Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
1.2 KiB
Nix
44 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitea,
|
|
}:
|
|
buildGoModule (finalAttrs: {
|
|
pname = "gitea-mcp-server";
|
|
version = "0.4.0";
|
|
|
|
src = fetchFromGitea {
|
|
domain = "gitea.com";
|
|
owner = "gitea";
|
|
repo = "gitea-mcp";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-MWH50NOZKp0OxuIELnbp34GKLWFaVOZCZOQnNLvYHro=";
|
|
};
|
|
|
|
vendorHash = "sha256-LZIgADgUUNrMPBdCF0kz4koZUvGfHvzb8T+hwbiIYjs=";
|
|
|
|
subPackages = [ "." ];
|
|
|
|
doCheck = false; # no test
|
|
|
|
postInstall = ''
|
|
install -Dm644 README.md LICENSE -t $out/share/doc/gitea-mcp-server
|
|
'';
|
|
|
|
meta = {
|
|
description = "Gitea Model Context Protocol (MCP) Server";
|
|
longDescription = ''
|
|
The Gitea MCP Server is a Model Context Protocol (MCP) server that provides
|
|
seamless integration with Gitea APIs, enabling advanced automation and
|
|
interaction capabilities for developers and tools.
|
|
|
|
This server allows LLMs to interact with Gitea repositories, issues, pull
|
|
requests, and other Gitea features through structured API interactions.
|
|
'';
|
|
homepage = "https://gitea.com/gitea/gitea-mcp";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "gitea-mcp";
|
|
maintainers = with lib.maintainers; [ connerohnesorge ];
|
|
};
|
|
})
|