2015-11-01 11:19:23 +00:00
|
|
|
{ stdenv, fetchurl, buildPythonPackage, makeWrapper, ffmpeg, zip
|
2015-06-07 18:34:29 +00:00
|
|
|
, pandoc ? null }:
|
2015-06-05 03:57:40 +00:00
|
|
|
|
2015-06-05 08:38:35 +00:00
|
|
|
# Pandoc is required to build the package's man page. Release tarballs
|
|
|
|
# contain a formatted man page already, though, so it's fine to pass
|
|
|
|
# "pandoc = null" to this derivation; the man page will still be
|
|
|
|
# installed. We keep the pandoc argument and build input 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.
|
2012-01-18 20:32:37 +00:00
|
|
|
|
2015-06-07 18:34:29 +00:00
|
|
|
buildPythonPackage rec {
|
2015-11-01 11:19:23 +00:00
|
|
|
|
|
|
|
name = "youtube-dl-${meta.version}";
|
2012-01-18 20:32:37 +00:00
|
|
|
|
2012-12-27 19:37:04 +00:00
|
|
|
src = fetchurl {
|
2015-11-01 11:19:23 +00:00
|
|
|
url = "http://yt-dl.org/downloads/${meta.version}/${name}.tar.gz";
|
2016-01-03 20:50:26 +00:00
|
|
|
sha256 = "0b0pk8h2iswdiyf65c0zcwcad9dm2hid67fnfafj7d3ikp4kfbvk";
|
2012-01-18 20:32:37 +00:00
|
|
|
};
|
|
|
|
|
2015-06-07 18:34:29 +00:00
|
|
|
buildInputs = [ makeWrapper zip 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.
|
2015-08-18 23:45:59 +00:00
|
|
|
postInstall = stdenv.lib.optionalString (ffmpeg != null)
|
2015-06-07 18:34:29 +00:00
|
|
|
''wrapProgram $out/bin/youtube-dl --prefix PATH : "${ffmpeg}/bin"'';
|
2015-03-25 22:25:01 +00:00
|
|
|
|
2015-05-28 14:04:51 +00:00
|
|
|
meta = with stdenv.lib; {
|
2016-01-03 20:50:26 +00:00
|
|
|
version = "2016.01.01";
|
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;
|
|
|
|
maintainers = with maintainers; [ bluescreen303 simons phreedom AndersonTorres fuuzetsu ];
|
2012-01-18 20:32:37 +00:00
|
|
|
};
|
|
|
|
}
|