fixes
NixOS Configuration CI / Nix Flake Check (push) Successful in 52s

This commit is contained in:
2026-06-03 23:54:11 +02:00
parent b17a484806
commit f4b66744ad
7 changed files with 90 additions and 178 deletions
+29
View File
@@ -0,0 +1,29 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "annas-mcp";
version = "0.0.5";
src = fetchFromGitHub {
owner = "iosifache";
repo = "annas-mcp";
rev = "v${version}";
hash = "sha256-XicM7tU5jD8B8n7JJDQ/84koBiLb8XF4+WBQ4LCUoRU=";
};
vendorHash = "sha256-2NdG5p2XfrhVgi388dRDBUSGwg6ybnzfn9495TWNGsA=";
subPackages = [ "cmd/annas-mcp" ];
meta = with lib; {
description = "MCP server and CLI for searching and downloading documents from Anna's Archive";
homepage = "https://github.com/iosifache/annas-mcp";
license = licenses.mit;
mainProgram = "annas-mcp";
platforms = platforms.all;
};
}