summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2013-10-27 16:42:56 +0100
committerLluís Batlle i Rossell <viric@viric.name>2013-10-27 16:43:25 +0100
commit37f7c96a7eb74e48ce42152d75757b4e3c552cbb (patch)
treefe95a33c275d860feab13c83db62ade0e72bf227 /pkgs/tools
parent78876a8292dadca81039b7279455bc9d4d28393e (diff)
downloadnixlib-37f7c96a7eb74e48ce42152d75757b4e3c552cbb.tar
nixlib-37f7c96a7eb74e48ce42152d75757b4e3c552cbb.tar.gz
nixlib-37f7c96a7eb74e48ce42152d75757b4e3c552cbb.tar.bz2
nixlib-37f7c96a7eb74e48ce42152d75757b4e3c552cbb.tar.lz
nixlib-37f7c96a7eb74e48ce42152d75757b4e3c552cbb.tar.xz
nixlib-37f7c96a7eb74e48ce42152d75757b4e3c552cbb.tar.zst
nixlib-37f7c96a7eb74e48ce42152d75757b4e3c552cbb.zip
Update youtubeDL. Now vimeo downloads work again.
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 e4d934968b2e..86ef76178081 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.06.21";
+  version = "2013.10.23.2";
 in
 stdenv.mkDerivation rec {
   name = "youtube-dl-${version}";
 
   src = fetchurl {
     url = "http://youtube-dl.org/downloads/${version}/${name}.tar.gz";
-    sha256 = "3d4e9cc38af3c2fccfafd83d0c6382080531fd03e9067ceccc6864dfbea92b1e";
+    sha256 = "d3f4c9e0da165395856e690314caa5eef4382bd994dd46f041a520bf9747c35d";
   };
 
   buildInputs = [ python ];