summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorNiklas Hambüchen <mail@nh2.me>2020-01-25 04:03:06 +0100
committerGitHub <noreply@github.com>2020-01-25 04:03:06 +0100
commitf56ca2599d9f7ea9b7cae2a97f6cce41d96b664e (patch)
tree3eaacf061735e5fb7aa2ad53fe57561ba61bc786 /pkgs
parentade49c999a49a437489a52d44e720784318e2335 (diff)
parente0e2fd849a674379e4fae67aedad1188c9807194 (diff)
downloadnixpkgs-f56ca2599d9f7ea9b7cae2a97f6cce41d96b664e.tar
nixpkgs-f56ca2599d9f7ea9b7cae2a97f6cce41d96b664e.tar.gz
nixpkgs-f56ca2599d9f7ea9b7cae2a97f6cce41d96b664e.tar.bz2
nixpkgs-f56ca2599d9f7ea9b7cae2a97f6cce41d96b664e.tar.lz
nixpkgs-f56ca2599d9f7ea9b7cae2a97f6cce41d96b664e.tar.xz
nixpkgs-f56ca2599d9f7ea9b7cae2a97f6cce41d96b664e.tar.zst
nixpkgs-f56ca2599d9f7ea9b7cae2a97f6cce41d96b664e.zip
Merge pull request #78433 from arcnmx/pr-ytdl-update
youtube-dl: 2020.01.15 -> 2020.01.24
Diffstat (limited to 'pkgs')
-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 875eccac942..59fd4fa70c9 100644
--- a/pkgs/tools/misc/youtube-dl/default.nix
+++ b/pkgs/tools/misc/youtube-dl/default.nix
@@ -18,11 +18,11 @@ buildPythonPackage rec {
   # The websites youtube-dl deals with are a very moving target. That means that
   # downloads break constantly. Because of that, updates should always be backported
   # to the latest stable release.
-  version = "2020.01.15";
+  version = "2020.01.24";
 
   src = fetchurl {
     url = "https://yt-dl.org/downloads/${version}/${pname}-${version}.tar.gz";
-    sha256 = "0dyjc8nxyg9ry2ylmblh3fwavpais3mdfj6ndw4i0yc2vkw12rsm";
+    sha256 = "1zrnbjnwv315f9a83lk5c0gl4ianvp6q2kinxvqlv604sabcq78b";
   };
 
   nativeBuildInputs = [ makeWrapper ];