summary refs log tree commit diff
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2015-12-09 23:05:54 +0200
committerEfraim Flashner <efraim@flashner.co.il>2015-12-09 23:05:54 +0200
commit6b6a0b143d487befb115bcbcb54de862c508f4f6 (patch)
tree6d1384795497801572bc9ebb70b3b5131e29198a
parentfa092153423b11519248bfc0f752c16d541156c0 (diff)
downloadguix-6b6a0b143d487befb115bcbcb54de862c508f4f6.tar.gz
gnu: youtube-dl: Update to 2015.12.09.
* gnu/packages/video.scm (youtube-dl): Update to 2015.12.09.
[native-inputs]: Move python-setuptools here.
-rw-r--r--gnu/packages/video.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 928e9ef2c9..76374e2ac6 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -810,7 +810,7 @@ projects while introducing many more.")
 (define-public youtube-dl
   (package
     (name "youtube-dl")
-    (version "2015.11.18")
+    (version "2015.12.09")
     (source (origin
               (method url-fetch)
               (uri (string-append "http://youtube-dl.org/downloads/"
@@ -818,9 +818,9 @@ projects while introducing many more.")
                                   version ".tar.gz"))
               (sha256
                (base32
-                "0d8jy7xcali3rb645xvmjarsqrnqadl7zpqw17467zyjhzl2mjgb"))))
+                "11rzb30ik4all43r7bnsnm35mvs37y7xj3g9r7ig9jr7qlbhllwk"))))
     (build-system python-build-system)
-    (inputs `(("setuptools" ,python-setuptools)))
+    (native-inputs `(("python-setuptools" ,python-setuptools)))
     (home-page "http://youtube-dl.org")
     (synopsis "Download videos from YouTube.com and other sites")
     (description