Merge pull request #3535 from Fuuzetsu/youtube-dl

youtube-dl: update to 2014.08.10
This commit is contained in:
Pascal Wittmann 2014-08-11 10:08:15 +02:00
commit cb446271be

View File

@ -1,14 +1,14 @@
{ stdenv, fetchurl, python, zip }:
let
version = "2014.08.05";
version = "2014.08.10";
in
stdenv.mkDerivation rec {
name = "youtube-dl-${version}";
src = fetchurl {
url = "http://youtube-dl.org/downloads/${version}/${name}.tar.gz";
sha256 = "0gx1hrcajac26zd94qi1nsqpzv8jhjc2v1cw8msd1nya8is6v0bf";
sha256 = "1afa710vw0midpbv9pjw1b6h0x8kmdnj5dpipacnwsv3mbw1y4x1";
};
buildInputs = [ python ];