spotify-player: 0.20.7 -> 0.21.0

Release Notes:
https://github.com/aome510/spotify-player/releases/tag/v0.21.0

+12 -3
+12 -3
pkgs/by-name/sp/spotify-player/package.nix
··· 2 2 lib, 3 3 rustPlatform, 4 4 fetchFromGitHub, 5 + fetchpatch, 5 6 pkg-config, 6 7 openssl, 7 8 cmake, ··· 49 50 50 51 rustPlatform.buildRustPackage rec { 51 52 pname = "spotify-player"; 52 - version = "0.20.7"; 53 + version = "0.21.0"; 53 54 54 55 src = fetchFromGitHub { 55 56 owner = "aome510"; 56 57 repo = "spotify-player"; 57 58 tag = "v${version}"; 58 - hash = "sha256-g+SU6qDnafLiNOzZ75HUPgifuC8A+rb+KoqJoMHBJ04="; 59 + hash = "sha256-nOswrYt9NrzJV6CFBWZCpj/wIJnIgmr3i2TreAKGGPI="; 59 60 }; 60 61 61 - cargoHash = "sha256-rwWSKJMI/4fY60m+vGqTqrTijJN6d0PfQH417Ku9+0E="; 62 + cargoHash = "sha256-YarKRApcQHom3AQIirqGdmUOuy5B+BRehLijvF/GRPc="; 63 + 64 + patches = [ 65 + (fetchpatch { 66 + name = "fix-build-failure.patch"; 67 + url = "https://github.com/aome510/spotify-player/commit/77af13b48b2a03e61fef1cffea899929057551dc.patch"; 68 + hash = "sha256-5q8W0X49iZLYdwrBiZJTESb628VPamrm0zEYwDm8CVk="; 69 + }) 70 + ]; 62 71 63 72 nativeBuildInputs = [ 64 73 pkg-config