1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/tools/misc/youtube-dl/default.nix
Peter Simons bff4b06640 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.
2013-01-26 11:59:49 +01:00

34 lines
893 B
Nix

{ stdenv, fetchurl, python, pandoc, zip }:
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 ];
buildNativeInputs = [ pandoc zip ];
patchPhase = ''
rm youtube-dl
substituteInPlace Makefile --replace "#!/usr/bin/env python" "#!${python}/bin/python"
'';
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";
platforms = with stdenv.lib.platforms; linux ++ darwin;
maintainers = with stdenv.lib.maintainers; [ bluescreen303 simons ];
};
}