2015-06-07 18:34:29 +00:00
|
|
|
{ stdenv, fetchurl, makeWrapper, buildPythonPackage, zip, ffmpeg
|
|
|
|
, 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 {
|
2012-12-27 19:37:04 +00:00
|
|
|
name = "youtube-dl-${version}";
|
2015-10-07 17:10:36 +00:00
|
|
|
version = "2015.10.06.2";
|
2012-01-18 20:32:37 +00:00
|
|
|
|
2012-12-27 19:37:04 +00:00
|
|
|
src = fetchurl {
|
2013-06-23 07:38:44 +00:00
|
|
|
url = "http://youtube-dl.org/downloads/${version}/${name}.tar.gz";
|
2015-10-07 17:10:36 +00:00
|
|
|
sha256 = "0pxj1z5ay97iqh086qz7rxlp197py71f2mdmshz8rrhcjd6vw1sr";
|
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; {
|
2012-12-27 19:37:04 +00:00
|
|
|
homepage = "http://rg3.github.com/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
|
|
|
};
|
|
|
|
}
|