From f83bece050f34d3d34bc9b955e6b77daf34ba34e Mon Sep 17 00:00:00 2001 From: Alex TYRODE Date: Sat, 25 Jul 2026 13:26:04 +0000 Subject: [PATCH] chore(nix): pin code v0.4.9 The flake wraps the published release binaries rather than building from source, so `nix run github:atyrode/code` keeps serving v0.4.8 until this lands. Generated by scripts/bump-flake-pin.sh v0.4.9. Verified: `nix build .#packages.x86_64-linux.default` produces code-0.4.9 and the resulting binary runs. --- nix/code.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/nix/code.nix b/nix/code.nix index 39d027e..29f4a2e 100644 --- a/nix/code.nix +++ b/nix/code.nix @@ -8,23 +8,23 @@ # any platform). Version + hashes are repointed after each release by # scripts/bump-flake-pin.sh. let - version = "0.4.8"; + version = "0.4.9"; sources = { "x86_64-linux" = { asset = "code-linux-amd64"; - hash = "sha256-4mQmbA0PlckIINfxZOEZri42y/1EL5UBCr0iFrXwXgk="; + hash = "sha256-cDjxImFmmEXTCZP1nMEB5SZ9WNT00o2TbYJ8sxdWtF0="; }; "aarch64-linux" = { asset = "code-linux-arm64"; - hash = "sha256-YOw3+myUheiMMh3Rc4ftUEe2VFNyrPd151P732TwdA8="; + hash = "sha256-LXzk7w7/oT888T1VjJAqoKSjvknjXN4/PlU3O8sHlBY="; }; "x86_64-darwin" = { asset = "code-darwin-amd64"; - hash = "sha256-YrhlHTCwnOQZsXrtUDzzB+mvCGTcQa58vd2Z+Ka036A="; + hash = "sha256-nLbqppIWCIgPtHaD8oDzJusCNnlLF8yf9TydG2Xo58I="; }; "aarch64-darwin" = { asset = "code-darwin-arm64"; - hash = "sha256-nhsfc6SMVSydyTui/Sm135P2bWy/uRvJtOnBdc0TKxU="; + hash = "sha256-GCm7nFmi99aJf6gCPfdtxLfbFz7KlkIW+VRzMzYAsks="; }; }; source =