From 9f8045be221c9c830b6f3876ee1c4cc4611111f6 Mon Sep 17 00:00:00 2001 From: vmfunc Date: Tue, 9 Jun 2026 15:56:33 -0700 Subject: [PATCH] fix(nix): bump flake nixpkgs and refresh vendorHash the pinned nixpkgs shipped go 1.25.5 but go.mod now needs >= 1.25.7, so the flake build failed (GOTOOLCHAIN=local). bump the lock to a nixpkgs with go 1.26.3, and refresh the stale vendorHash for the current deps. `nix build` and `nix run github:vmfunc/sif` work again. --- flake.lock | 6 +++--- flake.nix | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/flake.lock b/flake.lock index 644277d..7664558 100644 --- a/flake.lock +++ b/flake.lock @@ -2,11 +2,11 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1767364772, - "narHash": "sha256-fFUnEYMla8b7UKjijLnMe+oVFOz6HjijGGNS1l7dYaQ=", + "lastModified": 1780930886, + "narHash": "sha256-rppURzHviaQN131F+nLiLdGfcb0uCd9gGP0E5+iw9MI=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "16c7794d0a28b5a37904d55bcca36003b9109aaa", + "rev": "8c3cede7ddc26bd659d2d383b5610efbd2c7a16e", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index 5b6a368..71f79b9 100644 --- a/flake.nix +++ b/flake.nix @@ -21,7 +21,7 @@ version = "unstable-${self.shortRev or self.dirtyShortRev or "dev"}"; src = ./.; - vendorHash = "sha256-ztKXnOjZS/jMxsRjtF0rIZ3lKv4YjMdZd6oQFRuAtR4="; + vendorHash = "sha256-fR63/dStMsZon22vancuLWIAvZiEYMLjMwY1kmRDNgM="; # Tests require network access (httptest) doCheck = false;