From 8a3ab5dba4f85dd1fb2ddaf683f9da7e5ec9854e Mon Sep 17 00:00:00 2001 From: Bird Date: Fri, 21 Jan 2022 04:32:39 +0000 Subject: [PATCH] gnu: gallery-dl: Add a new package. * gnu/packages/video.scm(gallery-dl): Add package. --- gnu/packages/video.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 461ccbb950..47f33ed3ac 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -2245,6 +2245,31 @@ (define-public smplayer the last played position, etc.") (license license:gpl2+))) +(define-public gallery-dl + (package + (name "gallery-dl") + (version "1.20.1") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/mikf/gallery-dl" + "/releases/download/v" + version + "/gallery_dl-" + version + ".tar.gz")) + (sha256 + (base32 + "0qkz8aznvybdqrjxsl6ir319ras05mi8l0sal4mgi18l70jndh51")))) + (build-system python-build-system) + (inputs (list python-requests ffmpeg)) + (home-page "https://github.com/mikf/gallery-dl") + (synopsis "Command-line program to download images from several sites") + (description "Command-line program to download image galleries +and collections from several image hosting sites +While this package can use youtube-dl or yt-dlp packages to download videos, +the focus is more on images and image hosting sites.") + (license license:gpl2))) + (define-public gnome-mpv (deprecated-package "gnome-mpv" celluloid)) base-commit: 2b6af630d61dd5b16424be55088de2b079e9fbaf -- 2.34.0