about summary refs log tree commit diff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2024-03-14 19:41:00 -0500
committerGitHub <noreply@github.com>2024-03-14 19:41:00 -0500
commitf1b705c02a962c4ad163986293cdb3ea88c4a77c (patch)
tree8e357ab387ad1ed4741d2923bdb26aa5d70b217b /pkgs/applications/audio
parent9254f99be68889779b385917620fc63efac6fb56 (diff)
parentdbb5cb859eac0e23d212439bb1ed791b8c53cf7c (diff)
downloadnixlib-f1b705c02a962c4ad163986293cdb3ea88c4a77c.tar
nixlib-f1b705c02a962c4ad163986293cdb3ea88c4a77c.tar.gz
nixlib-f1b705c02a962c4ad163986293cdb3ea88c4a77c.tar.bz2
nixlib-f1b705c02a962c4ad163986293cdb3ea88c4a77c.tar.lz
nixlib-f1b705c02a962c4ad163986293cdb3ea88c4a77c.tar.xz
nixlib-f1b705c02a962c4ad163986293cdb3ea88c4a77c.tar.zst
nixlib-f1b705c02a962c4ad163986293cdb3ea88c4a77c.zip
Merge pull request #295748 from marsam/update-spotifyd
spotifyd: 0.3.5 -> 0.3.5-unstable-2024-02-18
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/spotifyd/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/audio/spotifyd/default.nix b/pkgs/applications/audio/spotifyd/default.nix
index 0e41bedb2650..6de9493ab8e8 100644
--- a/pkgs/applications/audio/spotifyd/default.nix
+++ b/pkgs/applications/audio/spotifyd/default.nix
@@ -9,16 +9,16 @@
 
 rustPackages.rustPlatform.buildRustPackage rec {
   pname = "spotifyd";
-  version = "0.3.5";
+  version = "0.3.5-unstable-2024-02-18";
 
   src = fetchFromGitHub {
     owner = "Spotifyd";
     repo = "spotifyd";
-    rev = "v${version}";
-    hash = "sha256-+P85FWJIsfAv8/DnQFxfoWvNY8NpbZ2xUidfwN8tiA8=";
+    rev = "ff2f7a06e54bf05afd57a0243dc9f67abc15f040";
+    hash = "sha256-nebAd4a+ht+blRP52OF830/Dm15ZPwRL4IPWmmT9ViM=";
   };
 
-  cargoHash = "sha256-j+2yEtn3D+vNRcY4+NnqSX4xRQIE5Sq7bentxTh6kMI=";
+  cargoHash = "sha256-6BRIMTrWTwvX3yIGEYEvigMT+n4EtaruMdrej2Dd49w=";
 
   nativeBuildInputs = [ pkg-config ];
 
@@ -40,7 +40,7 @@ rustPackages.rustPlatform.buildRustPackage rec {
   meta = with lib; {
     description = "An open source Spotify client running as a UNIX daemon";
     homepage = "https://spotifyd.rs/";
-    changelog = "https://github.com/Spotifyd/spotifyd/raw/v${version}/CHANGELOG.md";
+    changelog = "https://github.com/Spotifyd/spotifyd/blob/${src.rev}/CHANGELOG.md";
     license = licenses.gpl3Plus;
     maintainers = with maintainers; [ anderslundstedt Br1ght0ne marsam ];
     platforms = platforms.unix;