summary refs log tree commit diff
path: root/pkgs/tools/misc/youtube-dl/default.nix
blob: 16d844d10d5d4049e6a56b05f48b85953cae5c68 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ 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 ];
  };
}