aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nix/package.nix6
1 files changed, 3 insertions, 3 deletions
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;