23 lines
505 B
Nix
23 lines
505 B
Nix
{ pkgs, final }:
|
|
final.melpaBuild {
|
|
pname = "agent-shell";
|
|
ename = "agent-shell";
|
|
version = "0.47.3";
|
|
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "xenodium";
|
|
repo = "agent-shell";
|
|
rev = "v0.50.1";
|
|
hash = "sha256-y3WKd7w9zNebNlP3phMLmMbrFd+MHqwwJH/dUP6VSlo=";
|
|
};
|
|
|
|
packageRequires = with final; [
|
|
acp
|
|
shell-maker
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/xenodium/agent-shell";
|
|
description = "Native agentic integrations for Claude Code, Gemini CLI, etc";
|
|
};
|
|
}
|