summary refs log tree commit diff
path: root/pkgs/tools/misc/yle-dl/default.nix
diff options
context:
space:
mode:
authorilmari-lauhakangas <ilmari-lauhakangas@users.noreply.github.com>2021-04-26 21:35:21 +0300
committerGitHub <noreply@github.com>2021-04-26 21:35:21 +0300
commitca889ec2ec32e46c76bbb32766a6852448b8e3ab (patch)
treeb78e710d89689fa00d6355ce45b23921ca0643ea /pkgs/tools/misc/yle-dl/default.nix
parent29823da9a5178534fcc908d70a0ed92755b32f1a (diff)
downloadnixpkgs-ca889ec2ec32e46c76bbb32766a6852448b8e3ab.tar
nixpkgs-ca889ec2ec32e46c76bbb32766a6852448b8e3ab.tar.gz
nixpkgs-ca889ec2ec32e46c76bbb32766a6852448b8e3ab.tar.bz2
nixpkgs-ca889ec2ec32e46c76bbb32766a6852448b8e3ab.tar.lz
nixpkgs-ca889ec2ec32e46c76bbb32766a6852448b8e3ab.tar.xz
nixpkgs-ca889ec2ec32e46c76bbb32766a6852448b8e3ab.tar.zst
nixpkgs-ca889ec2ec32e46c76bbb32766a6852448b8e3ab.zip
yle-dl: use latest ffmpeg
Downloading with yle-dl no longer works with ffmpeg 3
Diffstat (limited to 'pkgs/tools/misc/yle-dl/default.nix')
-rw-r--r--pkgs/tools/misc/yle-dl/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/misc/yle-dl/default.nix b/pkgs/tools/misc/yle-dl/default.nix
index 818ad5ec645..68218592bbb 100644
--- a/pkgs/tools/misc/yle-dl/default.nix
+++ b/pkgs/tools/misc/yle-dl/default.nix
@@ -1,4 +1,4 @@
-{ lib, fetchFromGitHub, rtmpdump, php, wget, python3Packages, ffmpeg_3 }:
+{ lib, fetchFromGitHub, rtmpdump, php, wget, python3Packages, ffmpeg }:
 
 python3Packages.buildPythonApplication rec {
   pname = "yle-dl";
@@ -12,12 +12,12 @@ python3Packages.buildPythonApplication rec {
   };
 
   propagatedBuildInputs = with python3Packages; [
-    attrs ConfigArgParse ffmpeg_3 future lxml requests
+    attrs ConfigArgParse ffmpeg future lxml requests
   ];
   pythonPath = [ rtmpdump php wget ];
 
   doCheck = false; # tests require network access
-  checkInputs = with python3Packages; [ ffmpeg_3 pytest pytestrunner ];
+  checkInputs = with python3Packages; [ ffmpeg pytest pytestrunner ];
 
   meta = with lib; {
     description = "Downloads videos from Yle (Finnish Broadcasting Company) servers";