33 lines
817 B
Nix
33 lines
817 B
Nix
{ stdenv, fetchurl, python, zip }:
|
|
|
|
let
|
|
version = "2013.06.21";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "youtube-dl-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://youtube-dl.org/downloads/${version}/${name}.tar.gz";
|
|
sha256 = "3d4e9cc38af3c2fccfafd83d0c6382080531fd03e9067ceccc6864dfbea92b1e";
|
|
};
|
|
|
|
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/";
|
|
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 ];
|
|
};
|
|
}
|