codex-acp: init at 0.3.14

This commit is contained in:
Tom Vincent
2025-11-07 13:25:22 +00:00
parent de2d647fcd
commit d7e5391845
+41
View File
@@ -0,0 +1,41 @@
{
lib,
fetchFromGitHub,
rustPlatform,
pkg-config,
openssl,
}:
rustPlatform.buildRustPackage rec {
pname = "codex-acp";
version = "0.3.14";
src = fetchFromGitHub {
owner = "zed-industries";
repo = "codex-acp";
tag = "v${version}";
hash = "sha256-tbAR5U02SSbceb0z8hkjMS5W78BVbX3mSSMUv3oysG4=";
};
cargoHash = "sha256-7N0S8vnG/QzkGHJG7BGQfUSVf0kXxv0tjTaJPkTojPk=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
openssl
];
doCheck = false;
meta = with lib; {
description = "An ACP-compatible coding agent powered by Codex";
homepage = "https://github.com/zed-industries/codex-acp";
changelog = "https://github.com/zed-industries/codex-acp/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ tlvince ];
platforms = platforms.unix;
sourceProvenance = with sourceTypes; [ fromSource ];
mainProgram = "codex-acp";
};
}