From 1767bebf2c4617ce42bc1e337589c599de044b9f Mon Sep 17 00:00:00 2001 From: Sabine Maennel <5292683+sabinem@users.noreply.github.com> Date: Fri, 11 Sep 2026 08:25:37 +0200 Subject: [PATCH] fix(nix): update the backend vendorHash after a dropped dependency MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removing testify took a line out of go.mod and two out of go.sum, but vendorHash still named the old module set, so the fixed-output derivation failed the hash check and no backend image could be built. The frontend was unaffected — it has no Go modules — which is why the v0.9.0 tag published half a release. --- components/backend/tools/nix/pkgs/service/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/backend/tools/nix/pkgs/service/default.nix b/components/backend/tools/nix/pkgs/service/default.nix index 1a1cfa0b..ae4fcfe6 100644 --- a/components/backend/tools/nix/pkgs/service/default.nix +++ b/components/backend/tools/nix/pkgs/service/default.nix @@ -21,7 +21,7 @@ cnLib.build.buildGoModule { ]; target = "service"; - vendorHash = "sha256-SesBLYLmjMYE+yaYOpJggdu7DEoh/rMeLuKBgiWp99k="; + vendorHash = "sha256-fq2vUGbWPV+sDivkiQuamC1lAZjy8VT8aa0/ipU8Ec8="; meta = { description = compName;