>From fe6252c6fe9474078033bd3bffbd76b62f8449a8 Mon Sep 17 00:00:00 2001 From: Feng Shu <tuma...@163.com> Date: Fri, 7 Apr 2017 21:18:55 +0800 Subject: [PATCH] gnu: add you-get
* gnu/packages/video.scm (you-get): New variable. --- gnu/packages/video.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 4f005f594..1d1f4d10f 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -1023,6 +1023,28 @@ YouTube.com and a few more sites.") (home-page "https://yt-dl.org") (license license:public-domain))) +(define-public you-get + (package + (name "you-get") + (version "0.4.652") + (source (origin + (method url-fetch) + (uri (string-append + "https://github.com/soimort/you-get/releases/download/v" + version "/you-get-" version ".tar.gz")) + (sha256 + (base32 + "0brkz98lycx8mmxjwmn7jlhqfdbvl0hy070n7skwr1k75kh99q30")))) + (build-system python-build-system) + (arguments '(#:tests? #f)) + (synopsis "Download videos, audios or images from the websites") + (description + "you-get is a tiny command-line utility, which can download media +contents (videos, audios, images) from the Web, in case there is no other +handy way to do it.") + (home-page "https://you-get.org/") + (license license:expat))) + (define-public libbluray (package (name "libbluray") -- 2.12.2
--