spotify: 1.2.15.828.g79f41970 -> 1.2.17.834.g26ee1129

+9 -5
+9 -5
pkgs/applications/audio/spotify/darwin.nix
··· 9 stdenv.mkDerivation { 10 inherit pname; 11 12 - version = "1.2.15.828.g79f41970"; 13 14 src = if stdenv.isAarch64 then ( 15 fetchurl { 16 - url = "https://web.archive.org/web/20230710021420/https://download.scdn.co/SpotifyARM64.dmg"; 17 - sha256 = "sha256-1X0Mln47uYs5l1t+5BFBk5lLnXZgnSqZLX41yA91I0s="; 18 }) 19 else ( 20 fetchurl { 21 - url = "https://web.archive.org/web/20230710021726/https://download.scdn.co/Spotify.dmg"; 22 - sha256 = "sha256-CmKZx8Ad0w6STBN0O4Sc4XqidOM6fCl74u2sI8w+Swk="; 23 }); 24 25 nativeBuildInputs = [ undmg ]; ··· 27 sourceRoot = "."; 28 29 installPhase = '' 30 mkdir -p $out/Applications 31 cp -r *.app $out/Applications 32 ''; 33 34 meta = meta // {
··· 9 stdenv.mkDerivation { 10 inherit pname; 11 12 + version = "1.2.17.834.g26ee1129"; 13 14 src = if stdenv.isAarch64 then ( 15 fetchurl { 16 + url = "https://web.archive.org/web/20230808124344/https://download.scdn.co/SpotifyARM64.dmg"; 17 + sha256 = "sha256-u22hIffuCT6DwN668TdZXYedY9PSE7ZnL+ITK78H7FI="; 18 }) 19 else ( 20 fetchurl { 21 + url = "https://web.archive.org/web/20230808124637/https://download.scdn.co/Spotify.dmg"; 22 + sha256 = "sha256-aaYMbZpa2LvyBeXmEAjrRYfYqbudhJHR/hvCNTsNQmw="; 23 }); 24 25 nativeBuildInputs = [ undmg ]; ··· 27 sourceRoot = "."; 28 29 installPhase = '' 30 + runHook preInstall 31 + 32 mkdir -p $out/Applications 33 cp -r *.app $out/Applications 34 + 35 + runHook postInstall 36 ''; 37 38 meta = meta // {