home-assistant: use headless ffmpeg variant

This commit is contained in:
Martin Weinelt 2022-12-01 11:39:22 +01:00
parent f22668233b
commit 028bf68df1

View file

@ -5,7 +5,7 @@
, fetchpatch , fetchpatch
, python3 , python3
, substituteAll , substituteAll
, ffmpeg , ffmpeg-headless
, inetutils , inetutils
, nixosTests , nixosTests
@ -309,7 +309,7 @@ in python.pkgs.buildPythonApplication rec {
patches = [ patches = [
(substituteAll { (substituteAll {
src = ./patches/ffmpeg-path.patch; src = ./patches/ffmpeg-path.patch;
ffmpeg = "${lib.getBin ffmpeg}/bin/ffmpeg"; ffmpeg = "${lib.getBin ffmpeg-headless}/bin/ffmpeg";
}) })
]; ];