- Add pi-coding-agent package (v0.55.4) with multi-platform support - Replace custom Go 1.25.6 override with nixpkgs-unstable buildGoModule for beads and perles builds - Update flake inputs: beads, nixpkgs-unstable, perles - Update vendor hashes for beads and perles - Add pi-coding-agent to development role
27 lines
700 B
Nix
27 lines
700 B
Nix
# Beads package - issue tracker for AI-supervised coding workflows
|
|
# Takes src as argument so it can be called from both overlay and flake packages
|
|
{ lib
|
|
, buildGoModule
|
|
, git
|
|
, pkg-config
|
|
, icu
|
|
, src
|
|
, version ? "unknown"
|
|
}:
|
|
|
|
buildGoModule {
|
|
pname = "beads";
|
|
inherit version src;
|
|
subPackages = [ "cmd/bd" ];
|
|
doCheck = false;
|
|
vendorHash = "sha256-OL6QGf4xSMpEbmU+41pFdO0Rrs3H162T3pdiW9UfWR0=";
|
|
nativeBuildInputs = [ git pkg-config ];
|
|
buildInputs = [ icu ];
|
|
meta = with lib; {
|
|
description = "beads (bd) - An issue tracker designed for AI-supervised coding workflows";
|
|
homepage = "https://github.com/steveyegge/beads";
|
|
license = licenses.mit;
|
|
mainProgram = "bd";
|
|
};
|
|
}
|