summary refs log tree commit diff
path: root/pkgs/applications/audio/mopidy
diff options
context:
space:
mode:
authorLily Foster <lily@lily.flowers>2023-11-05 11:47:51 -0500
committerLily Foster <lily@lily.flowers>2023-11-05 11:47:51 -0500
commitb4217d476a21617bd0fb80931fa90281af7588b3 (patch)
tree60ff4f465d06fc5a851adf5901dfac623fe64921 /pkgs/applications/audio/mopidy
parent85f1ba3e51676fa8cc604a3d863d729026a6b8eb (diff)
downloadnixpkgs-b4217d476a21617bd0fb80931fa90281af7588b3.tar
nixpkgs-b4217d476a21617bd0fb80931fa90281af7588b3.tar.gz
nixpkgs-b4217d476a21617bd0fb80931fa90281af7588b3.tar.bz2
nixpkgs-b4217d476a21617bd0fb80931fa90281af7588b3.tar.lz
nixpkgs-b4217d476a21617bd0fb80931fa90281af7588b3.tar.xz
nixpkgs-b4217d476a21617bd0fb80931fa90281af7588b3.tar.zst
nixpkgs-b4217d476a21617bd0fb80931fa90281af7588b3.zip
mopidy-spotify: add updateScript
Diffstat (limited to 'pkgs/applications/audio/mopidy')
-rw-r--r--pkgs/applications/audio/mopidy/spotify.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/applications/audio/mopidy/spotify.nix b/pkgs/applications/audio/mopidy/spotify.nix
index 86d20ea5e83..58d2461574f 100644
--- a/pkgs/applications/audio/mopidy/spotify.nix
+++ b/pkgs/applications/audio/mopidy/spotify.nix
@@ -1,4 +1,4 @@
-{ lib, fetchFromGitHub, pythonPackages, mopidy }:
+{ lib, fetchFromGitHub, pythonPackages, mopidy, unstableGitUpdater }:
 
 pythonPackages.buildPythonApplication rec {
   pname = "mopidy-spotify";
@@ -22,6 +22,8 @@ pythonPackages.buildPythonApplication rec {
 
   pythonImportsCheck = [ "mopidy_spotify" ];
 
+  passthru.updateScript = unstableGitUpdater { };
+
   meta = with lib; {
     homepage = "https://github.com/mopidy/mopidy-spotify";
     description = "Mopidy extension for playing music from Spotify";