Build agentpipe v0.6.0 from source (Go)
This commit is contained in:
@@ -328,7 +328,7 @@ fonts.packages = with pkgs; [
|
||||
# Minimal system packages needed for the session and core usability
|
||||
environment.systemPackages = with pkgs; [
|
||||
uv
|
||||
(pkgs.callPackage ../../pkgs/agentpipe-bin.nix { })
|
||||
(pkgs.callPackage ../../pkgs/agentpipe.nix { })
|
||||
(pkgs.callPackage ../../pkgs/sidecar-bin.nix { })
|
||||
xfce.thunar
|
||||
xfce.tumbler
|
||||
|
||||
34
pkgs/agentpipe.nix
Normal file
34
pkgs/agentpipe.nix
Normal file
@@ -0,0 +1,34 @@
|
||||
{ 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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user