fix: Update Nix flake vendorHash for Go dependencies (#68)

The vendorHash in the flake was outdated, causing build failures.
Updated to match current Go module dependencies.

Also bumped version to 0.9.9 to match current project version.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Sophie Smithburg
2025-10-17 15:16:53 -07:00
committed by GitHub
parent 6ba77e57e3
commit 34b5863f39

View File

@@ -19,7 +19,7 @@
{
packages.default = pkgs.buildGoModule {
pname = "beads";
version = "0.9.6";
version = "0.9.9";
src = self;
@@ -27,7 +27,7 @@
subPackages = [ "cmd/bd" ];
# Go module dependencies hash (computed via nix build)
vendorHash = "sha256-WvwT48izxMxx9qQmZp/6zwv7hHgTVd9KmOJFm7RWvrI=";
vendorHash = "sha256-1ufUs1PvFGsSR0DTSymni3RqecEBzAm//OBUWgaTwEs=";
meta = with pkgs.lib; {
description = "beads (bd) - An issue tracker designed for AI-supervised coding workflows";