open-websearch: init at 1.2.7 (#499687)

This commit is contained in:
Sandro
2026-06-09 00:45:32 +00:00
committed by GitHub
2 changed files with 35 additions and 0 deletions
+5
View File
@@ -23342,6 +23342,11 @@
github = "Reputable2772";
githubId = 153411261;
};
ReStranger = {
name = "ReStranger";
github = "ReStranger";
githubId = 69393944;
};
ret2pop = {
email = "ret2pop@gmail.com";
github = "ret2pop";
@@ -0,0 +1,30 @@
{
lib,
buildNpmPackage,
fetchFromGitHub,
}:
buildNpmPackage (finalAttrs: {
pname = "open-websearch";
version = "1.2.7";
__structuredAttrs = true;
strictDeps = true;
src = fetchFromGitHub {
owner = "Aas-ee";
repo = "open-webSearch";
tag = "v${finalAttrs.version}";
hash = "sha256-ko216HwLEFhVOsyOBTDZNK0MfXL55OFrIM7RR1BRJJM=";
};
npmDepsHash = "sha256-yhWFDXEPvm7HWFOiO3X1YRFYpAT0QeZJuFt65yxu+E0=";
meta = {
description = "Web search MCP server";
homepage = "https://github.com/Aas-ee/open-webSearch";
license = lib.licenses.asl20;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ ReStranger ];
mainProgram = "open-websearch";
};
})