35 lines
671 B
Nix
35 lines
671 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "agentpipe";
|
|
version = "0.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kevinelliott";
|
|
repo = "agentpipe";
|
|
rev = "v${version}";
|
|
hash = lib.fakeHash;
|
|
};
|
|
|
|
vendorHash = lib.fakeHash;
|
|
|
|
subPackages = [ "." ];
|
|
|
|
# Avoid dynamic linking surprises.
|
|
CGO_ENABLED = 0;
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description =
|
|
"CLI/TUI orchestrator for multi-agent conversations between AI CLI tools";
|
|
homepage = "https://github.com/kevinelliott/agentpipe";
|
|
license = licenses.mit;
|
|
mainProgram = "agentpipe";
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|