capture: use ffmpeg instead of ffmpeg_3

This commit is contained in:
Robert Schütz 2021-05-18 12:46:34 +02:00
parent e3088f6793
commit 36f7a012b7

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; {