2015-06-07 20:34:29 +02:00
|
|
|
{ stdenv, fetchurl, makeWrapper, buildPythonPackage, zip, ffmpeg
|
|
|
|
, pandoc ? null }:
|
2015-06-05 05:57:40 +02:00
|
|
|
|
2015-06-05 10:38:35 +02: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 21:32:37 +01:00
|
|
|
|
2015-06-07 20:34:29 +02:00
|
|
|
buildPythonPackage rec {
|
2012-12-27 20:37:04 +01:00
|
|
|
name = "youtube-dl-${version}";
|
2015-06-01 02:45:42 +02:00
|
|
|
version = "2015.05.29";
|
2012-01-18 21:32:37 +01:00
|
|
|
|
2012-12-27 20:37:04 +01:00
|
|
|
src = fetchurl {
|
2013-06-23 09:38:44 +02:00
|
|
|
url = "http://youtube-dl.org/downloads/${version}/${name}.tar.gz";
|
2015-06-01 02:45:42 +02:00
|
|
|
sha256 = "0lgxir2i5ipplg57wk8gnbbsdrk7szqnyb1bxr97f3h0rbm4dfij";
|
2012-01-18 21:32:37 +01:00
|
|
|
};
|
|
|
|
|
2015-06-07 20:34:29 +02:00
|
|
|
buildInputs = [ makeWrapper zip pandoc ];
|
2012-01-18 21:32:37 +01:00
|
|
|
|
2015-05-28 16:04:51 +02:00
|
|
|
# Ensure ffmpeg is available in $PATH for post-processing & transcoding support.
|
2015-06-07 20:34:29 +02:00
|
|
|
postInstall = stdenv.lib.optionalString (ffmpeg != null)
|
|
|
|
''wrapProgram $out/bin/youtube-dl --prefix PATH : "${ffmpeg}/bin"'';
|
2015-03-25 23:25:01 +01:00
|
|
|
|
2015-05-28 16:04:51 +02:00
|
|
|
meta = with stdenv.lib; {
|
2012-12-27 20:37:04 +01:00
|
|
|
homepage = "http://rg3.github.com/youtube-dl/";
|
2013-12-09 23:51:04 +01:00
|
|
|
repositories.git = https://github.com/rg3/youtube-dl.git;
|
2012-12-27 20:37:04 +01:00
|
|
|
description = "Command-line tool to download videos from YouTube.com and other sites";
|
2015-04-04 18:59:14 +02: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 21:32:37 +01:00
|
|
|
};
|
|
|
|
}
|