From 9f82f3691336f616379c00ea14e3b5b91bd44fc2 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Sun, 30 Nov 2025 15:28:35 +0100 Subject: build(package): Use `ffmpeg-headless` instead of `ffmpeg` There is no need for the graphical version. This cuts-down on the dependencies. --- nix/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'nix/package.nix') diff --git a/nix/package.nix b/nix/package.nix index 979696b..6f58a8f 100644 --- a/nix/package.nix +++ b/nix/package.nix @@ -13,7 +13,7 @@ installShellFiles, # buildInputs mpv-unwrapped, - ffmpeg, + ffmpeg-headless, openssl, libffi, zlib, @@ -67,7 +67,7 @@ in buildInputs = [ mpv-unwrapped.dev - ffmpeg + ffmpeg-headless openssl libffi zlib @@ -89,7 +89,7 @@ in DATABASE_URL = "sqlite://database.sqlx"; # Required by yt_dlp - FFMPEG_LOCATION = "${lib.getExe ffmpeg}"; + FFMPEG_LOCATION = "${lib.getExe ffmpeg-headless}"; # Tell pyo3 which python to use. PYO3_PYTHON = lib.getExe python; -- cgit 1.4.1