about summary refs log tree commit diff
path: root/pkgs/applications/video
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2021-05-20 19:03:35 +0200
committerGitHub <noreply@github.com>2021-05-20 19:03:35 +0200
commit7b361f15255f54853e9c73cb6f17c75244232ccc (patch)
treef709428bddc5c922e557866b60b9fd4e7be59f05 /pkgs/applications/video
parentf3bacf60ccca4b8fe47ca8d3efb76d2908275b52 (diff)
parent2cb6c2156de34d7b8c436d55c33d0e7e33197f27 (diff)
Merge pull request #123475 from dotlambda/xscast-ffmpeg
xscast: use ffmpeg instead of ffmpeg_3
Diffstat (limited to 'pkgs/applications/video')
-rw-r--r--pkgs/applications/video/xscast/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/video/xscast/default.nix b/pkgs/applications/video/xscast/default.nix
index 6501a3990885c..d740efe0c9b22 100644
--- a/pkgs/applications/video/xscast/default.nix
+++ b/pkgs/applications/video/xscast/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, makeWrapper, ffmpeg_3, imagemagick, dzen2, xorg }:
+{ lib, stdenv, fetchFromGitHub, makeWrapper, ffmpeg, imagemagick, dzen2, xorg }:
 
 stdenv.mkDerivation {
   pname = "xscast-unstable";
@@ -21,7 +21,7 @@ stdenv.mkDerivation {
     patchShebangs $out/bin
 
     wrapProgram "$out/bin/xscast" \
-      --prefix PATH : ${lib.makeBinPath [ ffmpeg_3 dzen2 xorg.xwininfo xorg.xinput xorg.xmodmap imagemagick ]}
+      --prefix PATH : ${lib.makeBinPath [ ffmpeg dzen2 xorg.xwininfo xorg.xinput xorg.xmodmap imagemagick ]}
 
     runHook postInstall
   '';