guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: Add gallery-dl.


From: guix-commits
Subject: branch master updated: gnu: Add gallery-dl.
Date: Tue, 25 Jan 2022 13:28:44 -0500

This is an automated email from the git hooks/post-receive script.

lfam pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new cc74d19d66 gnu: Add gallery-dl.
cc74d19d66 is described below

commit cc74d19d663b78a9ec8207d7e3a41cabfbe1a100
Author: Bird <birdsite@airmail.cc>
AuthorDate: Fri Jan 21 04:32:39 2022 +0000

    gnu: Add gallery-dl.
    
    * gnu/packages/video.scm (gallery-dl): New variable.
    
    Signed-off-by: Leo Famulari <leo@famulari.name>
---
 gnu/packages/video.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 1b26418eea..c568c61b85 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -2246,6 +2246,28 @@ possibility to play Youtube videos, download subtitles, 
remember
 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))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]