- Update beads and gastown flake inputs and vendorHashes - Remove merged-upstream patches for gastown and beads - Deduplicate beads/gastown build definitions in home role by using callPackage to reference shared packages/ definitions - Pin dolt to v1.82.4 (gastown requires >= 1.82.4) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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-XAhe4yuLzP9vQ3IFhWAO5fN/3OOfokcRxfeGKaRYEws=";
|
|
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";
|
|
};
|
|
}
|