Skip to content

Commit 96299d5

Browse files
committed
fix(flake): refresh vendorHash after gomod bumps
go.mod was bumped (inflect, ginkgo, gomega, urfave/cli) without regenerating the Nix vendorHash, causing buildGoModule to build against a stale vendor dir and fail with inconsistent vendoring.
1 parent b3ba03f commit 96299d5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
inherit version;
2121
src = pkgs.lib.cleanSource ./.;
2222
subPackages = [ "cmd/sqlc-gen-queries" ];
23-
vendorHash = "sha256-+p3CtZbFv2NQV8d2HI1wFBW2jbn4a9kc3+6qtjoLl8c=";
23+
vendorHash = "sha256-DJWhLrSOSAy1VjJS9BjVYqws8nQShWr7Y89vjWDO8VQ=";
2424
doInstallCheck = true;
2525
installCheckPhase = ''
2626
$out/bin/sqlc-gen-queries --help

0 commit comments

Comments
 (0)