capture: use ffmpeg instead of ffmpeg_3

(cherry picked from commit 36f7a012b798b90ac05b1d31bd7c468d01a6b327)
This commit is contained in:
Robert Schütz 2021-05-18 12:46:34 +02:00 committed by Dmitry Kalinkin
parent 2a0ab9f511
commit e3ddcfdf2c

View File

@ -1,4 +1,4 @@
{ lib, stdenv, slop, ffmpeg_3, fetchFromGitHub, makeWrapper}:
{ lib, stdenv, slop, ffmpeg, fetchFromGitHub, makeWrapper}:
stdenv.mkDerivation {
pname = "capture-unstable";
@ -18,7 +18,7 @@ stdenv.mkDerivation {
patchShebangs $out/bin/capture
wrapProgram $out/bin/capture \
--prefix PATH : '${lib.makeBinPath [ slop ffmpeg_3 ]}'
--prefix PATH : '${lib.makeBinPath [ slop ffmpeg ]}'
'';
meta = with lib; {