fix: Update Nix vendorHash after go.mod dependency updates

The Anthropic SDK update in PR #216 changed go.sum, requiring a new
vendorHash for the Nix flake build.

Updated hash from CI error output: sha256-m/2e3OxM4Ci4KoyH+leEt09C/CpD9SRrwPd39/cZQ9E=
This commit is contained in:
Steve Yegge
2025-11-03 23:48:49 -08:00
parent 6d3e2e0b4d
commit df6534de7f

View File

@@ -9,7 +9,7 @@ pkgs.buildGoModule {
subPackages = [ "cmd/bd" ];
# Go module dependencies hash (computed via nix build)
vendorHash = "sha256-cS2saiyKMgw4cXSc2INBHNJfJz5300ybI6Vxda1vLGk=";
vendorHash = "sha256-m/2e3OxM4Ci4KoyH+leEt09C/CpD9SRrwPd39/cZQ9E=";
# Git is required for tests
nativeBuildInputs = [ pkgs.git ];