youtube-dl: new package (download clips from youtube)

svn path=/nixpkgs/trunk/; revision=31654
This commit is contained in:
Peter Simons 2012-01-18 20:32:37 +00:00
parent 02392785c5
commit e58052514b
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{stdenv, fetchgit, python}:
let pkgname = "youtube-dl";
pkgver = "2011.12.08";
in
stdenv.mkDerivation {
name = "${pkgname}-${pkgver}";
src = fetchgit {
url = "git://github.com/rg3/${pkgname}";
rev = "661a807c65a154eccdddb875b45e4782ca86132c";
sha256 = "32fd193b867b122400e9d5d32f6dfaf15704f837a9dc2ff809e1ce06712857ba";
};
buildInputs = [python];
buildPhase = "sed -i 's|#!/usr/bin/env python|#!#{python}/bin/python|' youtube-dl";
installPhase = ''
ensureDir $out/bin
cp youtube-dl $out/bin
'';
meta = {
description = "A small command-line program to download videos from YouTube.com and a few more sites";
homepage = http://rg3.github.com/youtube-dl/;
maintainers = [
stdenv.lib.maintainers.bluescreen303
];
};
}

View file

@ -1628,6 +1628,8 @@ let
xtreemfs = callPackage ../tools/filesystems/xtreemfs {};
youtubeDL = callPackage ../tools/misc/youtube-dl { };
zbar = callPackage ../tools/graphics/zbar {};
zdelta = callPackage ../tools/compression/zdelta { };