3
0
Fork 0
forked from mirrors/nixpkgs

Youtube-DL: update to 2014.11.16

This commit is contained in:
AndersonTorres 2014-11-18 11:31:55 -02:00
parent 253c54e411
commit a24225da61

View file

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