claude-code-acp: init at 0.4.5 (#447029)

This commit is contained in:
Bruno Bigras
2025-11-12 15:40:28 +00:00
committed by GitHub
2 changed files with 35 additions and 0 deletions
+8
View File
@@ -24996,6 +24996,14 @@
githubId = 1694705;
name = "Sam Stites";
};
storopoli = {
email = "jose@storopoli.com";
github = "storopoli";
githubId = 43353831;
name = "Jose Storopoli";
keys = [ { fingerprint = "B8C0 1A87 C046 33C9 F6CD 0DA2 1BD3 8BE8 D065 3A7A"; } ];
matrix = "@jose:storopoli.com";
};
strager = {
email = "strager.nds@gmail.com";
github = "strager";
@@ -0,0 +1,27 @@
{
lib,
buildNpmPackage,
fetchFromGitHub,
}:
buildNpmPackage (finalAttrs: {
pname = "claude-code-acp";
version = "0.4.5";
src = fetchFromGitHub {
owner = "zed-industries";
repo = "claude-code-acp";
tag = "v${finalAttrs.version}";
hash = "sha256-kkAQuYP2S5EwIGJV8TLrlYzHOC54vmxEHwwuZD5P1hI=";
};
npmDepsHash = "sha256-IR88NP1AiR6t/MLDdaZY1Np0AE7wfqEUfmnohaf0ymc=";
meta = {
description = "ACP-compatible coding agent powered by the Claude Code SDK";
homepage = "https://github.com/zed-industries/claude-code-acp";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ storopoli ];
mainProgram = "claude-code-acp";
};
})