3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/youtube-dl/default.nix
Peter Simons 60cb018d80 youtube-dl: update to version 2012.12.11
The new build comes with man page and bash completion installed.
2012-12-27 20:46:28 +01:00

26 lines
680 B
Nix

{ stdenv, fetchurl, python, pandoc }:
let
version = "2012.12.11";
in
stdenv.mkDerivation {
name = "youtube-dl-${version}";
src = fetchurl {
url = "https://github.com/downloads/rg3/youtube-dl/youtube-dl.${version}.tar.gz";
sha256 = "03zv3z8p0fi122nqj7ff8hkgqscir4s7psm03rq7dfpg1z35klmn";
};
buildInputs = [ python pandoc ];
configurePhase = ''
makeFlagsArray=( PREFIX=$out SYSCONFDIR=$out/etc )
'';
meta = {
homepage = "http://rg3.github.com/youtube-dl/";
description = "Command-line tool to download videos from YouTube.com and other sites";
maintainers = [ stdenv.lib.maintainers.bluescreen303 stdenv.lib.maintainers.simons ];
};
}