0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-12 05:16:25 +03:00

mopidy: remove usage of with lib;

This commit is contained in:
Amadej Kastelic 2025-06-03 15:16:03 +02:00
parent d7edbf5505
commit 2f08dad0d1
No known key found for this signature in database

View file

@ -75,12 +75,12 @@ pythonPackages.buildPythonApplication rec {
inherit (nixosTests) mopidy; inherit (nixosTests) mopidy;
}; };
meta = with lib; { meta = {
homepage = "https://www.mopidy.com/"; homepage = "https://www.mopidy.com/";
description = "Extensible music server that plays music from local disk, Spotify, SoundCloud, and more"; description = "Extensible music server that plays music from local disk, Spotify, SoundCloud, and more";
mainProgram = "mopidy"; mainProgram = "mopidy";
license = licenses.asl20; license = lib.licenses.asl20;
maintainers = [ maintainers.fpletz ]; maintainers = [ lib.maintainers.fpletz ];
hydraPlatforms = [ ]; hydraPlatforms = [ ];
}; };
} }