thunderbird-mcp: 0.6.0 -> 0.7.3 (#541526)

This commit is contained in:
Pol Dellaiera
2026-07-13 17:58:17 +00:00
committed by GitHub
2 changed files with 1103 additions and 6 deletions
File diff suppressed because it is too large Load Diff
+10 -4
View File
@@ -7,24 +7,30 @@
buildNpmPackage (finalAttrs: {
pname = "thunderbird-mcp";
version = "0.6.0";
version = "0.7.3";
src = fetchFromGitHub {
owner = "TKasperczyk";
repo = "thunderbird-mcp";
tag = "v${finalAttrs.version}";
hash = "sha256-wewuXZV6tjSJ3gjmUkIoRFWwGbqVUc7xxEt1kp9dWSM=";
hash = "sha256-VIJUMMiJ2NCdMfxK4E/FAQ4P2ryS6KlxhPj749JH6sE=";
};
postPatch = ''
cp ${./package-lock.json} package-lock.json
'';
preInstall = "mkdir node_modules/";
forceEmptyCache = true;
dontNpmBuild = true;
npmDepsHash = "sha256-LbEnmABmAoTCTPNNbocl+n2TtFC3FOFwwTnyATxvM3k=";
npmDepsHash = "sha256-6irpujYRk/OvoTA43CvtoaOmHvK4coMFXRfXhGrjFNk=";
doCheck = true;
# Tests use local mock servers.
__darwinAllowLocalNetworking = true;
checkPhase = "npm test";
passthru.updateScript = nix-update-script { };