Codex icon

Codex 0.72.0

OpenAI's coding agent that runs in your terminal

Installation

System wide:

{
  environment.systemPackages = with nix-casks.packages.${system}; [
    codex # Codex
  ];
}

Home Manager:

{
  home.packages = with nix-casks.packages.${system}; [
    codex # Codex
  ];
}

Package Definition

{
  "pname": "codex",
  "version": "0.72.0",
  "src": {
    "url": "https://github.com/openai/codex/releases/download/rust-v0.72.0/codex-aarch64-apple-darwin.tar.gz",
    "sha256": "f9c7b6871f050a57d7e68c2c01963c0e34c4042b99f180ecdf950dc9b1ac7af8"
  },
  "installPhase": [
    "mkdir -p \"$out/bin\" && ln -s \"codex-aarch64-apple-darwin\" \"$out/bin/codex\""
  ],
  "meta": {
    "description": "OpenAI's coding agent that runs in your terminal",
    "homepage": "https://github.com/openai/codex"
  }
}