3
0
Fork 0
forked from mirrors/nixpkgs

youtube-dl: update from 2014.10.30 to 2014.11.02.1

This commit is contained in:
Evgeny Egorochkin 2014-11-03 13:18:20 +02:00
parent 195d3c7965
commit 3a03bf5700

View file

@ -1,14 +1,14 @@
{ stdenv, fetchurl, python, zip }:
let
version = "2014.10.30";
version = "2014.11.02.1";
in
stdenv.mkDerivation rec {
name = "youtube-dl-${version}";
src = fetchurl {
url = "http://youtube-dl.org/downloads/${version}/${name}.tar.gz";
sha256 = "1fl8lf8ddg2vqjzzhh9idrmva10x9hc6n78q3vbgh16gvpg35c3y";
sha256 = "17k0vcggb75nyl8ikamvz0i8q1hqm84qii7fidvnzdcf2v6fakif";
};
buildInputs = [ python ];