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";