From d7edbf55054079d26cb29965848382ca47324f2a Mon Sep 17 00:00:00 2001 From: Amadej Kastelic Date: Tue, 3 Jun 2025 15:14:41 +0200 Subject: [PATCH] mopidy-tidal: remove usage of with lib; add changelog --- pkgs/applications/audio/mopidy/tidal.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/mopidy/tidal.nix b/pkgs/applications/audio/mopidy/tidal.nix index 5c1bc69a6ffd..90e27bf0f441 100644 --- a/pkgs/applications/audio/mopidy/tidal.nix +++ b/pkgs/applications/audio/mopidy/tidal.nix @@ -31,10 +31,11 @@ python3Packages.buildPythonApplication rec { pytestFlagsArray = [ "tests/" ]; - meta = with lib; { + meta = { description = "Mopidy extension for playing music from Tidal"; homepage = "https://github.com/tehkillerbee/mopidy-tidal"; - license = licenses.mit; + changelog = "https://github.com/tehkillerbee/mopidy-tidal/releases/tag/v${version}"; + license = lib.licenses.mit; maintainers = [ ]; }; }