From 553de4de64e4c43f838d4d6c93f39ca0004fd1d9 Mon Sep 17 00:00:00 2001 From: seth Date: Wed, 3 Jul 2024 16:30:51 -0400 Subject: [PATCH] mopidy-spotify: use nix-update-script for updateScript --- pkgs/applications/audio/mopidy/spotify.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/mopidy/spotify.nix b/pkgs/applications/audio/mopidy/spotify.nix index b316753c108a..956e2790a516 100644 --- a/pkgs/applications/audio/mopidy/spotify.nix +++ b/pkgs/applications/audio/mopidy/spotify.nix @@ -3,7 +3,7 @@ fetchFromGitHub, pythonPackages, mopidy, - unstableGitUpdater, + nix-update-script, }: pythonPackages.buildPythonApplication { @@ -29,7 +29,9 @@ pythonPackages.buildPythonApplication { pythonImportsCheck = [ "mopidy_spotify" ]; - passthru.updateScript = unstableGitUpdater { tagPrefix = "v"; }; + passthru = { + updateScript = nix-update-script { }; + }; meta = { description = "Mopidy extension for playing music from Spotify";