From 4b229bec67df0c39868596c90822f419381b3015 Mon Sep 17 00:00:00 2001 From: Mori Zen <92977828+71zenith@users.noreply.github.com> Date: Thu, 13 Nov 2025 20:25:32 +0530 Subject: [PATCH] spotify-player: 0.21.1 -> 0.21.2 Release Notes: https://github.com/aome510/spotify-player/releases/tag/v0.21.2 --- pkgs/by-name/sp/spotify-player/package.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/sp/spotify-player/package.nix b/pkgs/by-name/sp/spotify-player/package.nix index e2c14b916ae9..db28c6ec4100 100644 --- a/pkgs/by-name/sp/spotify-player/package.nix +++ b/pkgs/by-name/sp/spotify-player/package.nix @@ -2,7 +2,6 @@ lib, rustPlatform, fetchFromGitHub, - fetchpatch, pkg-config, openssl, cmake, @@ -23,7 +22,7 @@ # build options withStreaming ? true, withDaemon ? true, - withAudioBackend ? "rodio", # alsa, pulseaudio, rodio, portaudio, jackaudio, rodiojack, sdl + withAudioBackend ? "rodio", # alsa, pulseaudio, rodio, portaudio, jackaudio, rodiojack, sdl, gstreamer withMediaControl ? true, withImage ? true, withNotify ? true, @@ -50,16 +49,16 @@ assert lib.assertOneOf "withAudioBackend" withAudioBackend [ rustPlatform.buildRustPackage rec { pname = "spotify-player"; - version = "0.21.1"; + version = "0.21.2"; src = fetchFromGitHub { owner = "aome510"; repo = "spotify-player"; tag = "v${version}"; - hash = "sha256-yjm5NFW+6vEyv45AVfwx+6w2dJ3lKj/UM2NQhGW5SSs="; + hash = "sha256-2LOsFcFZRdgH4TqtmVDqf8dxsPwZVQKsQbjyuDHwP/4="; }; - cargoHash = "sha256-rqDLkzCl7gn3s/37MPytYaGb0tdtemYi8bgEkrkllDU="; + cargoHash = "sha256-JgPf68KpRE8z+2webU99cR0+6xmaplcVwgFcgvHiwrs="; nativeBuildInputs = [ pkg-config