fix: update gastown vendorHash for Go module changes
Some checks failed
CI / check (push) Successful in 2m10s
CI / build-and-cache (push) Failing after 3m57s

The upstream gastown Go dependencies changed, causing a hash mismatch
in the fixed-output derivation. Updated vendorHash in both:
- packages/gastown/default.nix (flake packages output)
- home/roles/development/default.nix (home-manager inline build)
This commit is contained in:
2026-03-05 09:04:28 -08:00
parent f4c1de5fb3
commit c85f047ee2
2 changed files with 2 additions and 2 deletions

View File

@@ -32,7 +32,7 @@ let
pname = "gastown"; pname = "gastown";
version = "unstable-${gastownRev}"; version = "unstable-${gastownRev}";
src = globalInputs.gastown; src = globalInputs.gastown;
vendorHash = "sha256-ripY9vrYgVW8bngAyMLh0LkU/Xx1UUaLgmAA7/EmWQU="; vendorHash = "sha256-/+ODyndArUF0nJY9r8G5JKhzQckBHFb48A7EBZmoIr0=";
subPackages = [ "cmd/gt" ]; subPackages = [ "cmd/gt" ];
doCheck = false; doCheck = false;

View File

@@ -9,7 +9,7 @@
buildGoModule { buildGoModule {
pname = "gastown"; pname = "gastown";
inherit version src; inherit version src;
vendorHash = "sha256-ripY9vrYgVW8bngAyMLh0LkU/Xx1UUaLgmAA7/EmWQU="; vendorHash = "sha256-/+ODyndArUF0nJY9r8G5JKhzQckBHFb48A7EBZmoIr0=";
subPackages = [ "cmd/gt" ]; subPackages = [ "cmd/gt" ];
doCheck = false; doCheck = false;