From eddb00d4c1037a983913fccf32880aece050cd32 Mon Sep 17 00:00:00 2001 From: joshp123 Date: Thu, 26 Feb 2026 13:26:17 +0100 Subject: [PATCH] chore(gogcli): pin to joshp123 fork v0.11.1 Why - Need immediate delivery of refresh-token rotation persistence fix before upstream release. - Keep existing binary-tar packaging flow (no package-model changes). What - bump gogcli package version 0.11.0 -> 0.11.1 - switch release artifact URLs to joshp123/gogcli v0.11.1 - update SRI hashes for darwin arm64, linux amd64, linux arm64 assets Tests - nix build .#gogcli - ./result/bin/gog version --- nix/pkgs/gogcli.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/nix/pkgs/gogcli.nix b/nix/pkgs/gogcli.nix index aad5471..c1a30a4 100644 --- a/nix/pkgs/gogcli.nix +++ b/nix/pkgs/gogcli.nix @@ -3,22 +3,22 @@ let sources = { "aarch64-darwin" = { - url = "https://github.com/steipete/gogcli/releases/download/v0.11.0/gogcli_0.11.0_darwin_arm64.tar.gz"; - hash = "sha256-ESaGjD+TmhSqlld9Vlj1/vHhU58zJzC/NaBudBYsnmE="; + url = "https://github.com/joshp123/gogcli/releases/download/v0.11.1/gogcli_0.11.1_darwin_arm64.tar.gz"; + hash = "sha256-fNc6D2VSh8xZypTWd9c2GM9dWSUUuTVbQ5sqXIqCUCA="; }; "x86_64-linux" = { - url = "https://github.com/steipete/gogcli/releases/download/v0.11.0/gogcli_0.11.0_linux_amd64.tar.gz"; - hash = "sha256-ypi6VuKczTcT/nv4Nf3KAK4bl83LewvF45Pn7bQInIQ="; + url = "https://github.com/joshp123/gogcli/releases/download/v0.11.1/gogcli_0.11.1_linux_amd64.tar.gz"; + hash = "sha256-+VfeOurErs/UnBTKcld2gQOUYxTNz5LyzOjOY6j2R5Y="; }; "aarch64-linux" = { - url = "https://github.com/steipete/gogcli/releases/download/v0.11.0/gogcli_0.11.0_linux_arm64.tar.gz"; - hash = "sha256-G/6YBUVkFQFIj+2Txm/HZnHHKkYFKF9XRXLaxwDv3TU="; + url = "https://github.com/joshp123/gogcli/releases/download/v0.11.1/gogcli_0.11.1_linux_arm64.tar.gz"; + hash = "sha256-20hyAqf4QGh5QQtIKtoFd8jn4yza1hjQr9eZ22pi73I="; }; }; in stdenv.mkDerivation { pname = "gogcli"; - version = "0.11.0"; + version = "0.11.1"; src = fetchurl sources.${stdenv.hostPlatform.system};