2013-06-23 09:38:44 +02:00
|
|
|
{ stdenv, fetchurl, python, zip }:
|
2012-01-18 21:32:37 +01:00
|
|
|
|
2012-12-27 20:37:04 +01:00
|
|
|
let
|
2014-08-11 08:57:38 +02:00
|
|
|
version = "2014.08.10";
|
2012-01-18 21:32:37 +01:00
|
|
|
in
|
2013-06-23 09:38:44 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2012-12-27 20:37:04 +01:00
|
|
|
name = "youtube-dl-${version}";
|
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";
|
2014-08-11 08:57:38 +02:00
|
|
|
sha256 = "1afa710vw0midpbv9pjw1b6h0x8kmdnj5dpipacnwsv3mbw1y4x1";
|
2012-01-18 21:32:37 +01:00
|
|
|
};
|
|
|
|
|
2012-12-29 15:45:54 +01:00
|
|
|
buildInputs = [ python ];
|
2013-06-23 09:38:44 +02:00
|
|
|
nativeBuildInputs = [ zip ];
|
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
|
|
|
'';
|
|
|
|
|
|
|
|
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";
|
2013-01-26 11:59:49 +01:00
|
|
|
|
|
|
|
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
2014-03-13 07:54:58 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ bluescreen303 simons phreedom ];
|
2012-01-18 21:32:37 +01:00
|
|
|
};
|
|
|
|
}
|