lol

Merge pull request #115191 from marsam/update-spotifyd

spotifyd: 0.3.0 -> 0.3.2

authored by

Maximilian Bosch and committed by
GitHub
496b02bb df831845

+6 -5
+6 -5
pkgs/applications/audio/spotifyd/default.nix
··· 1 - { lib, fetchFromGitHub, rustPackages_1_45, pkg-config, openssl 1 + { lib, fetchFromGitHub, rustPackages, pkg-config, openssl 2 2 , withALSA ? true, alsaLib ? null 3 3 , withPulseAudio ? false, libpulseaudio ? null 4 4 , withPortAudio ? false, portaudio ? null ··· 7 7 , dbus ? null 8 8 }: 9 9 10 - rustPackages_1_45.rustPlatform.buildRustPackage rec { 10 + rustPackages.rustPlatform.buildRustPackage rec { 11 11 pname = "spotifyd"; 12 - version = "0.3.0"; 12 + version = "0.3.2"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "Spotifyd"; 16 16 repo = "spotifyd"; 17 17 rev = "v${version}"; 18 - sha256 = "055njhy9if4qpsbgbr6615xxhcx9plava1m4l323vi4dbw09wh5r"; 18 + sha256 = "1a578h13iv8gqmskzlncfr42jlg5gp0zfcizv4wbd48y9hl8fh2l"; 19 19 }; 20 20 21 - cargoSha256 = "1ijrl208607abjwpr3cajcbj6sr35bk6ik778a58zf28kzdhrawc"; 21 + cargoSha256 = "1sm5yfgjx5xfnqqh1v8ycwzxw4kl6dq5gcvsdnc4h1cj3pdhbpcc"; 22 22 23 23 cargoBuildFlags = [ 24 24 "--no-default-features" ··· 39 39 meta = with lib; { 40 40 description = "An open source Spotify client running as a UNIX daemon"; 41 41 homepage = "https://github.com/Spotifyd/spotifyd"; 42 + changelog = "https://github.com/Spotifyd/spotifyd/raw/v${version}/CHANGELOG.md"; 42 43 license = licenses.gpl3Plus; 43 44 maintainers = with maintainers; [ anderslundstedt Br1ght0ne marsam ]; 44 45 platforms = platforms.unix;