From eed888d46b85b5d3df398b7c35fecd5580795707 Mon Sep 17 00:00:00 2001 From: Alex TYRODE Date: Sat, 25 Jul 2026 05:51:13 +0200 Subject: [PATCH] chore(nix): pin code v0.4.8 Repoints the flake self-pin at the published v0.4.8 release so `nix run github:atyrode/code` serves code ls / code session reap. Hashes converted from the release checksums.txt. Produced by hand rather than scripts/bump-flake-pin.sh: that script needs GNU sed -i and fails on macOS with 'extra characters at the end of d command'. --- nix/code.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/nix/code.nix b/nix/code.nix index aaae760..39d027e 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.7"; + version = "0.4.8"; sources = { "x86_64-linux" = { asset = "code-linux-amd64"; - hash = "sha256-EM848E6RPkqt2Qf2hgdmLG4F1hb3MN8WTohzozubcIo="; + hash = "sha256-4mQmbA0PlckIINfxZOEZri42y/1EL5UBCr0iFrXwXgk="; }; "aarch64-linux" = { asset = "code-linux-arm64"; - hash = "sha256-S8NfHmcmw9GogJ+Gf7lpIzJS8pJwYNWyRBY2RQI6Gkw="; + hash = "sha256-YOw3+myUheiMMh3Rc4ftUEe2VFNyrPd151P732TwdA8="; }; "x86_64-darwin" = { asset = "code-darwin-amd64"; - hash = "sha256-xNg8U+97wqW4y95aJgBYSr+McXAdnc9ovd9H1UMQuKs="; + hash = "sha256-YrhlHTCwnOQZsXrtUDzzB+mvCGTcQa58vd2Z+Ka036A="; }; "aarch64-darwin" = { asset = "code-darwin-arm64"; - hash = "sha256-QQWQqNxwqaG9TK9yx+UQHk/yLUD00AetHgmL19YkFQA="; + hash = "sha256-nhsfc6SMVSydyTui/Sm135P2bWy/uRvJtOnBdc0TKxU="; }; }; source =