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
This commit is contained in:
joshp123 2026-02-26 13:26:17 +01:00
parent 95ebfa73f4
commit eddb00d4c1

View File

@ -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};