gallery-dl: remove meta = with lib;

Signed-off-by: Ludovico Piero <lewdovico@gnuweeb.org>
This commit is contained in:
Ludovico Piero 2024-06-02 07:44:27 +09:00
parent 7c64f88d04
commit 01d19622b0
No known key found for this signature in database
GPG Key ID: 3911DD276CFE779C

View File

@ -36,12 +36,12 @@ buildPythonApplication rec {
pythonImportsCheck = [ "gallery_dl" ];
meta = with lib; {
meta = {
description = "Command-line program to download image-galleries and -collections from several image hosting sites";
homepage = "https://github.com/mikf/gallery-dl";
changelog = "https://github.com/mikf/gallery-dl/blob/v${version}/CHANGELOG.md";
license = licenses.gpl2Only;
license = lib.licenses.gpl2Only;
mainProgram = "gallery-dl";
maintainers = with maintainers; [ dawidsowa ];
maintainers = with lib.maintainers; [ dawidsowa ];
};
}