nixpkgs/pkgs/tools/misc/youtube-dl/default.nix
aszlig b40eee79a7
youtube-dl: Update to version 2015.03.09.
With the old version, not even YouTube videos are working anymore.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-03-12 22:23:52 +01:00

35 lines
960 B
Nix

{ stdenv, fetchurl, python, zip, pandoc }:
let
version = "2015.03.09";
in
stdenv.mkDerivation rec {
name = "youtube-dl-${version}";
src = fetchurl {
url = "http://youtube-dl.org/downloads/${version}/${name}.tar.gz";
sha256 = "0mxpm79xdzzckc5rysjx17pxm9bldk7s13im7l9xd4pjrhy411xz";
};
buildInputs = [ python ];
nativeBuildInputs = [ zip pandoc ];
patchPhase = ''
rm youtube-dl
'';
configurePhase = ''
makeFlagsArray=( PREFIX=$out SYSCONFDIR=$out/etc PYTHON=${python}/bin/python )
'';
meta = {
homepage = "http://rg3.github.com/youtube-dl/";
repositories.git = https://github.com/rg3/youtube-dl.git;
description = "Command-line tool to download videos from YouTube.com and other sites";
license = stdenv.lib.licenses.unlicense;
platforms = with stdenv.lib.platforms; linux ++ darwin;
maintainers = with stdenv.lib.maintainers; [ bluescreen303 simons phreedom AndersonTorres fuuzetsu ];
};
}