Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
agentide # AgentIDE
];
} Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
agentide # AgentIDE
];
} Package Definition
{
"pname": "agentide",
"version": "0.9.0",
"src": {
"url": "https://github.com/MikeMcQuaid/AgentIDE/releases/download/0.9.0/AgentIDE-0.9.0.zip",
"sha256": "d01cfe6325c48afbe8cff586b3b59e3db89a436202f7706e053b1823fa5ea5bd"
},
"installPhase": [
"mkdir -p \"$out/Applications/AgentIDE.app\" && cp -r \"AgentIDE.app\" \"$out/Applications\"",
"mkdir -p \"$out/bin\" && ln -s \"$out/Applications/AgentIDE.app/Contents/Resources/bin/agentide\" \"$out/bin/agentide\""
],
"meta": {
"description": "IDE for agent-based development",
"homepage": "https://github.com/MikeMcQuaid/AgentIDE"
}
}