nixpkgs/pkgs/tools/misc/youtube-dl/default.nix

34 lines
869 B
Nix
Raw Normal View History

2013-06-23 07:38:44 +00:00
{ stdenv, fetchurl, python, zip }:
let
version = "2013.12.17.2";
in
2013-06-23 07:38:44 +00:00
stdenv.mkDerivation rec {
name = "youtube-dl-${version}";
src = fetchurl {
2013-06-23 07:38:44 +00:00
url = "http://youtube-dl.org/downloads/${version}/${name}.tar.gz";
sha256 = "1dmv14v623v9afxfn0rw1gfdd91sngfgj4dg7hwbmnqsja0qxydv";
};
2012-12-29 14:45:54 +00:00
buildInputs = [ python ];
2013-06-23 07:38:44 +00:00
nativeBuildInputs = [ zip ];
2012-12-29 14:45:54 +00:00
patchPhase = ''
rm youtube-dl
'';
configurePhase = ''
2013-06-23 07:38:44 +00:00
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;
2012-12-29 14:45:54 +00:00
maintainers = with stdenv.lib.maintainers; [ bluescreen303 simons ];
};
}