1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/misc/youtube-dl/default.nix

35 lines
960 B
Nix
Raw Normal View History

{ stdenv, fetchurl, python, zip, pandoc }:
let
version = "2015.03.24";
in
2013-06-23 08:38:44 +01:00
stdenv.mkDerivation rec {
name = "youtube-dl-${version}";
src = fetchurl {
2013-06-23 08:38:44 +01:00
url = "http://youtube-dl.org/downloads/${version}/${name}.tar.gz";
sha256 = "1m462hcgizdp59s9h62hjwhq4vjrgmck23x2bh5jvb9vjpcfqjxv";
};
2012-12-29 14:45:54 +00:00
buildInputs = [ python ];
nativeBuildInputs = [ zip pandoc ];
2012-12-29 14:45:54 +00:00
patchPhase = ''
rm youtube-dl
'';
configurePhase = ''
2013-06-23 08:38:44 +01:00
makeFlagsArray=( PREFIX=$out SYSCONFDIR=$out/etc PYTHON=${python}/bin/python )
'';
meta = {
homepage = "http://rg3.github.com/youtube-dl/";
repositories.git = https://github.com/rg3/youtube-dl.git;
description = "Command-line tool to download videos from YouTube.com and other sites";
2014-10-22 19:35:42 +01:00
license = stdenv.lib.licenses.unlicense;
platforms = with stdenv.lib.platforms; linux ++ darwin;
maintainers = with stdenv.lib.maintainers; [ bluescreen303 simons phreedom AndersonTorres fuuzetsu ];
};
}