34 lines
869 B
Nix
34 lines
869 B
Nix
{ stdenv, fetchurl, python, zip }:
|
|
|
|
let
|
|
version = "2013.12.11.2";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "youtube-dl-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://youtube-dl.org/downloads/${version}/${name}.tar.gz";
|
|
sha256 = "1ar0shbk22dfnq37z8kxd1bv7dk3vm3439f4zhgc9ylvn6n0hnkq";
|
|
};
|
|
|
|
buildInputs = [ python ];
|
|
nativeBuildInputs = [ zip ];
|
|
|
|
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";
|
|
|
|
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
|
maintainers = with stdenv.lib.maintainers; [ bluescreen303 simons ];
|
|
};
|
|
}
|