about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorNixpkgs Monitor <none@none>2013-12-13 14:48:49 +0200
committerEvgeny Egorochkin <phreedom@yandex.ru>2013-12-13 20:56:36 +0200
commit0be455e0e4318bf74f81eab3fe7c82fc909b2a09 (patch)
treee70ccc9c9e9226bfa43e050589ab23475af961a5 /pkgs/tools
parentf9d66c239eb112619654ee2b831f78749d12bcef (diff)
downloadnixlib-0be455e0e4318bf74f81eab3fe7c82fc909b2a09.tar
nixlib-0be455e0e4318bf74f81eab3fe7c82fc909b2a09.tar.gz
nixlib-0be455e0e4318bf74f81eab3fe7c82fc909b2a09.tar.bz2
nixlib-0be455e0e4318bf74f81eab3fe7c82fc909b2a09.tar.lz
nixlib-0be455e0e4318bf74f81eab3fe7c82fc909b2a09.tar.xz
nixlib-0be455e0e4318bf74f81eab3fe7c82fc909b2a09.tar.zst
nixlib-0be455e0e4318bf74f81eab3fe7c82fc909b2a09.zip
youtubeDL: update from 2013.12.08.1 to 2013.12.11.2
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/youtube-dl/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/youtube-dl/default.nix b/pkgs/tools/misc/youtube-dl/default.nix
index 77d7efdb5f68..01ef17845c44 100644
--- a/pkgs/tools/misc/youtube-dl/default.nix
+++ b/pkgs/tools/misc/youtube-dl/default.nix
@@ -1,14 +1,14 @@
 { stdenv, fetchurl, python, zip }:
 
 let
-  version = "2013.12.08.1";
+  version = "2013.12.11.2";
 in
 stdenv.mkDerivation rec {
   name = "youtube-dl-${version}";
 
   src = fetchurl {
     url = "http://youtube-dl.org/downloads/${version}/${name}.tar.gz";
-    sha256 = "0sqdc0fbk6xlfd5d2iy4r9kr5inl0122zzri08zndpl4cbzawhaq";
+    sha256 = "1ar0shbk22dfnq37z8kxd1bv7dk3vm3439f4zhgc9ylvn6n0hnkq";
   };
 
   buildInputs = [ python ];