3
0
Fork 0
forked from mirrors/nixpkgs

youtube-dl: update from 2014.11.12 to 2014.11.13.3

This commit is contained in:
Evgeny Egorochkin 2014-11-15 21:51:02 +02:00
parent 17140ebba8
commit 7e2f54ae44

View file

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