This commit is contained in:
eric
2026-04-04 05:57:58 +02:00
commit 97f329c825
55 changed files with 10026 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{ pkgs }:
pkgs.rustPlatform.buildRustPackage {
pname = "codex-controller-loop";
version = "0.1.0";
src = ../..;
cargoLock.lockFile = ../../Cargo.lock;
meta = {
description = "Standalone Codex controller loop framework";
mainProgram = "codex-controller-loop";
};
}