about summary refs log tree commit diff
path: root/pkgs/tools/misc/yt-dlp
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2022-02-04 17:30:37 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2022-02-04 17:30:37 +1000
commit3c22d451670f55179290c7f575e13fa82e441a60 (patch)
tree7e592a897f73821e862831136724dc43b2a9470d /pkgs/tools/misc/yt-dlp
parent289f03c9b9f217cae6d6ee9cbdb8bd5e588befb4 (diff)
yt-dlp: 2022.2.3 -> 2022.2.4
https://github.com/yt-dlp/yt-dlp/releases/tag/2022.02.04
Diffstat (limited to 'pkgs/tools/misc/yt-dlp')
-rw-r--r--pkgs/tools/misc/yt-dlp/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/yt-dlp/default.nix b/pkgs/tools/misc/yt-dlp/default.nix
index 02670e878308a..b73b41acd88d3 100644
--- a/pkgs/tools/misc/yt-dlp/default.nix
+++ b/pkgs/tools/misc/yt-dlp/default.nix
@@ -20,12 +20,12 @@ buildPythonPackage rec {
   # The websites yt-dlp 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 = "2022.2.3";
+  version = "2022.2.4";
 
   src = fetchPypi {
     inherit pname;
     version = builtins.replaceStrings [ ".0" ] [ "." ] version;
-    sha256 = "sha256-lV3RgUq9F4uv8jg9FULv7kit/J3p4vXIZ4SwnNb1omI=";
+    sha256 = "sha256-gbUO18+c/MBC2PWhrS0c17E8SLNsB/rxiAaW6sCn3bU=";
   };
 
   propagatedBuildInputs = [ websockets mutagen ]