beads: init at 0.27.2 (#464143)

This commit is contained in:
Aleksana
2025-12-20 03:24:27 +00:00
committed by GitHub
2 changed files with 74 additions and 0 deletions
+5
View File
@@ -13522,6 +13522,11 @@
githubId = 37185887;
name = "Calvin Kim";
};
kedry = {
name = "Kevin Edry";
github = "kedry";
githubId = 12020122;
};
keegancsmith = {
email = "keegan.csmith@gmail.com";
name = "Keegan Carruthers-Smith";
+69
View File
@@ -0,0 +1,69 @@
{
lib,
stdenv,
buildGoModule,
fetchFromGitHub,
gitMinimal,
installShellFiles,
versionCheckHook,
writableTmpDirAsHomeHook,
}:
buildGoModule (finalAttrs: {
pname = "beads";
version = "0.27.2";
src = fetchFromGitHub {
owner = "steveyegge";
repo = "beads";
tag = "v${finalAttrs.version}";
hash = "sha256-PpuyQCQocmOqt4EYDsjx1nh0dRxt2e7Vu1/KQ74B88Q=";
};
vendorHash = "sha256-5p4bHTBB6X30FosIn6rkMDJoap8tOvB7bLmVKsy09D8=";
subPackages = [ "cmd/bd" ];
ldflags = [
"-s"
"-w"
];
nativeBuildInputs = [ installShellFiles ];
nativeCheckInputs = [
gitMinimal
writableTmpDirAsHomeHook
];
# Skip security tests on Darwin - they check for /etc/passwd which isn't available in sandbox
checkFlags = lib.optionals stdenv.hostPlatform.isDarwin [
"-skip=TestCleanupMergeArtifacts_CommandInjectionPrevention"
];
preCheck = ''
export PATH="$out/bin:$PATH"
'';
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
installShellCompletion --cmd bd \
--bash <($out/bin/bd completion bash) \
--fish <($out/bin/bd completion fish) \
--zsh <($out/bin/bd completion zsh)
'';
nativeInstallCheckInputs = [
versionCheckHook
writableTmpDirAsHomeHook
];
versionCheckProgramArg = "version";
doInstallCheck = true;
meta = {
description = "Lightweight memory system for AI coding agents with graph-based issue tracking";
homepage = "https://github.com/steveyegge/beads";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ kedry ];
mainProgram = "bd";
};
})