about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2024-03-13 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2024-03-13 04:20:00 +0000
commitdbb5cb859eac0e23d212439bb1ed791b8c53cf7c (patch)
treed2edf0151d828f11bd0827e402c9cc73a6134b41 /pkgs
parent8ed573783fdc2abcf97c01cfb60f6c622b8f23f9 (diff)
downloadnixlib-dbb5cb859eac0e23d212439bb1ed791b8c53cf7c.tar
nixlib-dbb5cb859eac0e23d212439bb1ed791b8c53cf7c.tar.gz
nixlib-dbb5cb859eac0e23d212439bb1ed791b8c53cf7c.tar.bz2
nixlib-dbb5cb859eac0e23d212439bb1ed791b8c53cf7c.tar.lz
nixlib-dbb5cb859eac0e23d212439bb1ed791b8c53cf7c.tar.xz
nixlib-dbb5cb859eac0e23d212439bb1ed791b8c53cf7c.tar.zst
nixlib-dbb5cb859eac0e23d212439bb1ed791b8c53cf7c.zip
spotifyd: 0.3.5 -> 0.3.5-unstable-2024-02-18
Diff: https://github.com/Spotifyd/spotifyd/compare/v0.3.5...ff2f7a06e54bf05afd57a0243dc9f67abc15f040

Changelog: https://github.com/Spotifyd/spotifyd/blob/ff2f7a06e54bf05afd57a0243dc9f67abc15f040/CHANGELOG.md
Diffstat (limited to 'pkgs')
-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;