From c611f401a6cebac69c5cb7ef694c25b25a2f9225 Mon Sep 17 00:00:00 2001 From: Hraban Luyat Date: Sat, 13 Dec 2025 14:57:31 -0500 Subject: [PATCH] spotify: 1.2.75.510 -> 1.2.78.418 The current content hashes are broken for me. When I manually fetch the files currently in master from the wayback machine and unpack the dmg I get a different version from the one listed. This is both an upgrade and a fix --- pkgs/by-name/sp/spotify/darwin.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/sp/spotify/darwin.nix b/pkgs/by-name/sp/spotify/darwin.nix index 4307b745a54f..6f9ff6906db7 100644 --- a/pkgs/by-name/sp/spotify/darwin.nix +++ b/pkgs/by-name/sp/spotify/darwin.nix @@ -11,7 +11,7 @@ stdenv.mkDerivation { inherit pname; - version = "1.2.75.510"; + version = "1.2.78.418"; src = # WARNING: This Wayback Machine URL redirects to the closest timestamp. @@ -20,13 +20,13 @@ stdenv.mkDerivation { # https://web.archive.org/web/*/https://download.scdn.co/Spotify.dmg if stdenv.hostPlatform.isAarch64 then (fetchurl { - url = "https://web.archive.org/web/20251029235406/https://download.scdn.co/SpotifyARM64.dmg"; - hash = "sha256-gEZxRBT7Jo2m6pirf+CreJiMeE2mhIkpe9Mv5t0RI58="; + url = "https://web.archive.org/web/20251212105149/https://download.scdn.co/SpotifyARM64.dmg"; + hash = "sha256-/rrThZOpjzaHPX1raDe5X8PqtJeTI4GDS5sXSfthXTQ="; }) else (fetchurl { - url = "https://web.archive.org/web/20251029235833/https://download.scdn.co/Spotify.dmg"; - hash = "sha256-fhQYm7yMrlvY57gMuWGU31EbWidZ2l9bd44mhokZKTw="; + url = "https://web.archive.org/web/20251212105140/https://download.scdn.co/Spotify.dmg"; + hash = "sha256-N2tQTS9vHp93cRI0c5riVZ/8FSaq3ovDqh5K9aU6jV0="; }); nativeBuildInputs = [ undmg ];