3
0
Fork 0
forked from mirrors/nixpkgs

youtube-dl: enable builds by Hydra on Linux and Darwin

youtube-dl is a very short script, but it depends on Pandoc to generate its
documentation, and Pandoc is fairly expensive to build (or download). Offering
binary packages of youtube-dl for Hydra users should remedy the need to install
Pandoc.
This commit is contained in:
Peter Simons 2013-01-26 11:59:49 +01:00
parent 0d141e23a1
commit bff4b06640

View file

@ -26,6 +26,8 @@ stdenv.mkDerivation {
meta = { meta = {
homepage = "http://rg3.github.com/youtube-dl/"; homepage = "http://rg3.github.com/youtube-dl/";
description = "Command-line tool to download videos from YouTube.com and other sites"; 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 ]; maintainers = with stdenv.lib.maintainers; [ bluescreen303 simons ];
}; };
} }