video-trimmer: use ffmpeg-headless, to reduce closure

This commit is contained in:
Doron Behar 2023-12-03 16:16:12 +02:00
parent ec04772e75
commit f17155ae13

View File

@ -13,7 +13,7 @@
, gtk4
, libadwaita
, gst_all_1
, ffmpeg-full
, ffmpeg-headless
}:
stdenv.mkDerivation (finalAttrs: {
@ -63,7 +63,7 @@ stdenv.mkDerivation (finalAttrs: {
preFixup = ''
gappsWrapperArgs+=(
--prefix PATH : "${lib.makeBinPath [ ffmpeg-full ]}"
--prefix PATH : "${lib.makeBinPath [ ffmpeg-headless ]}"
)
'';