guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: yt-dlp: Update to 2023.06.22.


From: guix-commits
Subject: 01/02: gnu: yt-dlp: Update to 2023.06.22.
Date: Sat, 24 Jun 2023 17:08:16 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 815dd5bce33ef52daea4a6c5f2e69c2e14bfbac5
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sat Jun 24 21:56:52 2023 +0300

    gnu: yt-dlp: Update to 2023.06.22.
    
    * gnu/packages/video.scm (yt-dlp): Update to 2023.06.22.
    [native-inputs]: Rewrite using supported-package?.
---
 gnu/packages/video.scm | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 55eab972b9..aa46da0c5e 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -2554,7 +2554,7 @@ YouTube.com and many more sites.")
 (define-public yt-dlp
   (package/inherit youtube-dl
     (name "yt-dlp")
-    (version "2023.03.04")
+    (version "2023.06.22")
     (source
      (origin
        (method git-fetch)
@@ -2563,7 +2563,7 @@ YouTube.com and many more sites.")
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1zb4blj7qrmwkryyqrkxl909f59hvbs8dwiwl7sw1fs2kdzb1rw4"))))
+        (base32 "16y0rvbj6h3i2r8yzac6d7v2md4jrik2azix58c895wcy9qamjkl"))))
     (arguments
      (substitute-keyword-arguments (package-arguments youtube-dl)
        ((#:tests? _) (not (%current-target-system)))
@@ -2612,8 +2612,7 @@ YouTube.com and many more sites.")
     (native-inputs
      (append
        ;; To generate the manpage.
-       (if (member (%current-system)
-                   (package-transitive-supported-systems pandoc))
+       (if (supported-package? pandoc)
          (list pandoc)
          '())
        (list python-pytest zip)))



reply via email to

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