2012-12-29 14:45:54 +00:00
|
|
|
{ stdenv, fetchurl, python, pandoc, zip }:
|
2012-01-18 20:32:37 +00:00
|
|
|
|
2012-12-27 19:37:04 +00:00
|
|
|
let
|
|
|
|
version = "2012.12.11";
|
2012-01-18 20:32:37 +00:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2012-12-27 19:37:04 +00:00
|
|
|
name = "youtube-dl-${version}";
|
2012-01-18 20:32:37 +00:00
|
|
|
|
2012-12-27 19:37:04 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/downloads/rg3/youtube-dl/youtube-dl.${version}.tar.gz";
|
|
|
|
sha256 = "03zv3z8p0fi122nqj7ff8hkgqscir4s7psm03rq7dfpg1z35klmn";
|
2012-01-18 20:32:37 +00:00
|
|
|
};
|
|
|
|
|
2012-12-29 14:45:54 +00:00
|
|
|
buildInputs = [ python ];
|
|
|
|
buildNativeInputs = [ pandoc zip ];
|
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
rm youtube-dl
|
|
|
|
substituteInPlace Makefile --replace "#!/usr/bin/env python" "#!${python}/bin/python"
|
|
|
|
'';
|
2012-01-18 20:32:37 +00:00
|
|
|
|
2012-12-27 19:37:04 +00:00
|
|
|
configurePhase = ''
|
|
|
|
makeFlagsArray=( PREFIX=$out SYSCONFDIR=$out/etc )
|
2012-01-18 20:32:37 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2012-12-27 19:37:04 +00:00
|
|
|
homepage = "http://rg3.github.com/youtube-dl/";
|
|
|
|
description = "Command-line tool to download videos from YouTube.com and other sites";
|
2012-12-29 14:45:54 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ bluescreen303 simons ];
|
2012-01-18 20:32:37 +00:00
|
|
|
};
|
|
|
|
}
|