summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorEvgeny Egorochkin <phreedom@yandex.ru>2014-03-30 19:24:21 +0300
committerEvgeny Egorochkin <phreedom@yandex.ru>2014-03-30 19:24:21 +0300
commit6f4a62e9e4342fc5303d026f108b3f84febe2a3d (patch)
treef6f4e56ff361631d47174b159e3ffc3af4b806b8 /pkgs/tools/misc
parent075168ca817420f6cb845353791945e251aff122 (diff)
downloadnixlib-6f4a62e9e4342fc5303d026f108b3f84febe2a3d.tar
nixlib-6f4a62e9e4342fc5303d026f108b3f84febe2a3d.tar.gz
nixlib-6f4a62e9e4342fc5303d026f108b3f84febe2a3d.tar.bz2
nixlib-6f4a62e9e4342fc5303d026f108b3f84febe2a3d.tar.lz
nixlib-6f4a62e9e4342fc5303d026f108b3f84febe2a3d.tar.xz
nixlib-6f4a62e9e4342fc5303d026f108b3f84febe2a3d.tar.zst
nixlib-6f4a62e9e4342fc5303d026f108b3f84febe2a3d.zip
youtubeDL: update from 2014.03.25.1 to 2014.03.30.1
Diffstat (limited to 'pkgs/tools/misc')
-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 a70678c50343..6e2f92e9c1c8 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 = "2014.03.25.1";
+  version = "2014.03.30.1";
 in
 stdenv.mkDerivation rec {
   name = "youtube-dl-${version}";
 
   src = fetchurl {
     url = "http://youtube-dl.org/downloads/${version}/${name}.tar.gz";
-    sha256 = "09jayir0n10pgp6h3swzlx4d2x82by6f3dgbvnlvby73h5lpf668";
+    sha256 = "07xdhgc2sgr7bqkaxwcihvx6l0m6alp3i8d0ij7cxrk6b6rvwrgx";
   };
 
   buildInputs = [ python ];