2017-02-18 00:51:02 +00:00
|
|
|
{ stdenv, fetchurl, buildPythonApplication
|
|
|
|
, zip, ffmpeg, rtmpdump, atomicparsley, pandoc
|
2016-08-30 12:36:16 +00:00
|
|
|
# Pandoc is required to build the package's man page. Release tarballs contain a
|
|
|
|
# formatted man page already, though, it will still be installed. We keep the
|
|
|
|
# manpage argument in place in case someone wants to use this derivation to
|
|
|
|
# build a Git version of the tool that doesn't have the formatted man page
|
|
|
|
# included.
|
|
|
|
, generateManPage ? false
|
|
|
|
, ffmpegSupport ? true
|
2016-11-06 16:29:15 +00:00
|
|
|
, rtmpSupport ? true
|
2017-02-18 00:51:02 +00:00
|
|
|
, makeWrapper }:
|
2015-06-05 03:57:40 +00:00
|
|
|
|
2016-08-30 12:36:16 +00:00
|
|
|
with stdenv.lib;
|
2016-02-19 12:12:11 +00:00
|
|
|
buildPythonApplication rec {
|
2015-11-01 11:19:23 +00:00
|
|
|
|
2016-01-25 18:09:38 +00:00
|
|
|
name = "youtube-dl-${version}";
|
2017-02-28 15:47:21 +00:00
|
|
|
version = "2017.02.27";
|
2012-01-18 20:32:37 +00:00
|
|
|
|
2012-12-27 19:37:04 +00:00
|
|
|
src = fetchurl {
|
2016-06-28 10:56:13 +00:00
|
|
|
url = "https://yt-dl.org/downloads/${version}/${name}.tar.gz";
|
2017-02-28 15:47:21 +00:00
|
|
|
sha256 = "0pcrr1bxxw3aar681gj8n5ms69j54namjlw5bj88crs0nm69kspk";
|
2012-01-18 20:32:37 +00:00
|
|
|
};
|
|
|
|
|
2017-02-28 15:47:21 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = [ zip ] ++ optional generateManPage pandoc;
|
2012-01-18 20:32:37 +00:00
|
|
|
|
2015-05-28 14:04:51 +00:00
|
|
|
# Ensure ffmpeg is available in $PATH for post-processing & transcoding support.
|
2016-11-06 16:29:15 +00:00
|
|
|
# rtmpdump is required to download files over RTMP
|
2016-08-30 12:36:16 +00:00
|
|
|
# atomicparsley for embedding thumbnails
|
|
|
|
postInstall = let
|
2017-02-18 00:51:02 +00:00
|
|
|
packagesToBinPath =
|
|
|
|
[ atomicparsley ]
|
|
|
|
++ optional ffmpegSupport ffmpeg
|
|
|
|
++ optional rtmpSupport rtmpdump;
|
2016-08-30 12:36:16 +00:00
|
|
|
in ''
|
2017-02-18 00:51:02 +00:00
|
|
|
wrapProgram $out/bin/youtube-dl --prefix PATH : "${makeBinPath packagesToBinPath}"
|
2016-08-30 12:36:16 +00:00
|
|
|
'';
|
2015-03-25 22:25:01 +00:00
|
|
|
|
2016-01-25 18:09:38 +00:00
|
|
|
# Requires network
|
|
|
|
doCheck = false;
|
|
|
|
|
2016-08-30 12:36:16 +00:00
|
|
|
meta = {
|
2015-11-01 11:19:23 +00:00
|
|
|
homepage = http://rg3.github.io/youtube-dl/;
|
2013-12-09 22:51:04 +00:00
|
|
|
repositories.git = https://github.com/rg3/youtube-dl.git;
|
2012-12-27 19:37:04 +00:00
|
|
|
description = "Command-line tool to download videos from YouTube.com and other sites";
|
2015-04-04 16:59:14 +00:00
|
|
|
longDescription = ''
|
|
|
|
youtube-dl is a small, Python-based command-line program
|
|
|
|
to download videos from YouTube.com and a few more sites.
|
|
|
|
youtube-dl is released to the public domain, which means
|
|
|
|
you can modify it, redistribute it or use it however you like.
|
|
|
|
'';
|
|
|
|
license = licenses.publicDomain;
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
2016-05-16 20:30:20 +00:00
|
|
|
maintainers = with maintainers; [ bluescreen303 phreedom AndersonTorres fuuzetsu ];
|
2012-01-18 20:32:37 +00:00
|
|
|
};
|
|
|
|
}
|