about summary refs log tree commit diff
path: root/pkgs/applications/video/xscast
diff options
context:
space:
mode:
authorRobert Schütz <dev@schuetz-co.de>2021-05-18 11:16:41 +0200
committerRobert Schütz <dev@schuetz-co.de>2021-05-18 11:16:41 +0200
commit2cb6c2156de34d7b8c436d55c33d0e7e33197f27 (patch)
tree08eb4085930b1732f6298e9b1d72effa3eecd474 /pkgs/applications/video/xscast
parent1e85864c6f7afe8ba44ee0cde0ad29f9ab80c137 (diff)
downloadnixlib-2cb6c2156de34d7b8c436d55c33d0e7e33197f27.tar
nixlib-2cb6c2156de34d7b8c436d55c33d0e7e33197f27.tar.gz
nixlib-2cb6c2156de34d7b8c436d55c33d0e7e33197f27.tar.bz2
nixlib-2cb6c2156de34d7b8c436d55c33d0e7e33197f27.tar.lz
nixlib-2cb6c2156de34d7b8c436d55c33d0e7e33197f27.tar.xz
nixlib-2cb6c2156de34d7b8c436d55c33d0e7e33197f27.tar.zst
nixlib-2cb6c2156de34d7b8c436d55c33d0e7e33197f27.zip
xscast: use ffmpeg instead of ffmpeg_3
Diffstat (limited to 'pkgs/applications/video/xscast')
-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 6501a3990885..d740efe0c9b2 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
   '';