diff options
author | Raghav Gururajan <rg@raghavgururajan.name> | 2021-06-26 14:05:09 -0400 |
---|---|---|
committer | Raghav Gururajan <rg@raghavgururajan.name> | 2021-06-26 14:05:09 -0400 |
commit | 43b87b4a05a754b7c7aed1f8ddc74f32125d4f3d (patch) | |
tree | fbcd001980d20280f7c47d35c1eafacc46393f94 /gnu/packages/video.scm | |
parent | 5c8369d6c12e5158d8131523ad644a9cba33869c (diff) |
gnu: youtube-dl-gui: Update to 4.0.
This new version requires gettext and twodict.
* gnu/packages/video.scm (youtube-dl-gui)[version]: Update to 4.0.
[native-inputs]: Add gettext-minimal.
[inputs]: Add python2-twodict.
Diffstat (limited to 'gnu/packages/video.scm')
-rw-r--r-- | gnu/packages/video.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 33d0bcff08..b8b8dfcc60 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -2284,14 +2284,14 @@ YouTube.com and many more sites.") (define-public youtube-dl-gui (package (name "youtube-dl-gui") - (version "0.3.8") + (version "0.4") (source (origin (method url-fetch) (uri (pypi-uri "Youtube-DLG" version)) (sha256 (base32 - "0napxwzgls5ik1bxbp99vly32l23xpc4ng5kr24hfhf21ypjyadb")))) + "1bvq2wyn6az59vpdy04dh68fs8m2qzz948xhphibbcpwpcdk00cd")))) (build-system python-build-system) (arguments ;; In Guix, wxpython has not yet been packaged for Python 3. @@ -2365,8 +2365,11 @@ YouTube.com and many more sites.") Type=Application~@ Categories=AudioVideo;Audio;Video;Network~%"))) #t)))))) + (native-inputs + `(("gettext-minimal" ,gettext-minimal))) (inputs - `(("python2-wxpython" ,python2-wxpython) + `(("python2-twodict" ,python2-twodict) + ("python2-wxpython" ,python2-wxpython) ("youtube-dl" ,youtube-dl))) (home-page "https://github.com/MrS0m30n3/youtube-dl-gui") (synopsis |