2015-03-25 23:25:01 +01:00
|
|
|
{ stdenv, fetchurl, makeWrapper, python, zip, pandoc, ffmpeg }:
|
2012-01-18 21:32:37 +01:00
|
|
|
|
2015-04-04 18:59:14 +02:00
|
|
|
with stdenv.lib;
|
2013-06-23 09:38:44 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2012-12-27 20:37:04 +01:00
|
|
|
name = "youtube-dl-${version}";
|
2015-05-20 21:14:45 +02:00
|
|
|
version = "2015.05.20";
|
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-05-20 21:14:45 +02:00
|
|
|
sha256 = "1crfada7vq3d24062wr06sfam66cf14j06wnhg7w5ljzrbynvpll";
|
2012-01-18 21:32:37 +01:00
|
|
|
};
|
|
|
|
|
2015-04-04 18:59:14 +02:00
|
|
|
buildInputs = [ python makeWrapper zip pandoc ];
|
2012-12-29 15:45:54 +01:00
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
rm youtube-dl
|
|
|
|
'';
|
2012-01-18 21:32:37 +01:00
|
|
|
|
2012-12-27 20:37:04 +01:00
|
|
|
configurePhase = ''
|
2013-06-23 09:38:44 +02:00
|
|
|
makeFlagsArray=( PREFIX=$out SYSCONFDIR=$out/etc PYTHON=${python}/bin/python )
|
2012-01-18 21:32:37 +01:00
|
|
|
'';
|
|
|
|
|
2015-03-25 23:25:01 +01:00
|
|
|
postInstall = ''
|
|
|
|
# ffmpeg is used for post-processing and fixups
|
|
|
|
wrapProgram $out/bin/youtube-dl --prefix PATH : "${ffmpeg}/bin"
|
|
|
|
'';
|
|
|
|
|
2012-01-18 21:32:37 +01:00
|
|
|
meta = {
|
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
|
|
|
};
|
|
|
|
}
|