onthespot: remove with.lib

This commit is contained in:
Fabian Affolter 2024-09-23 22:28:18 +02:00
parent 364a8c30fd
commit aba7ee13a4

View File

@ -74,13 +74,13 @@ python3.pkgs.buildPythonApplication rec {
}) })
]; ];
meta = with lib; { meta = {
description = "QT based Spotify music downloader written in Python"; description = "QT based Spotify music downloader written in Python";
homepage = "https://github.com/casualsnek/onthespot"; homepage = "https://github.com/casualsnek/onthespot";
changelog = "https://github.com/casualsnek/onthespot/releases/tag/v${version}"; changelog = "https://github.com/casualsnek/onthespot/releases/tag/v${version}";
license = licenses.gpl2Only; license = lib.licenses.gpl2Only;
maintainers = with maintainers; [ onny ]; maintainers = with lib.maintainers; [ onny ];
platforms = platforms.linux; platforms = lib.platforms.linux;
mainProgram = "onthespot_gui"; mainProgram = "onthespot_gui";
}; };
} }