From 9a0c6944484b281ef5d87ff04442e4208856f65f Mon Sep 17 00:00:00 2001 From: syzygial Date: Fri, 3 Mar 2023 18:17:28 -0500 Subject: [PATCH] Add missing Sysdeps --- flake.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index a6a3c34..7714e5d 100644 --- a/flake.nix +++ b/flake.nix @@ -37,8 +37,9 @@ cmake ]; - buildInputs = [ + buildInputs = with pkgs; [ # Add additional build inputs here + libopus ] ++ lib.optionals pkgs.stdenv.isDarwin ([ # Additional darwin specific inputs can be set here pkgs.libiconv @@ -46,6 +47,10 @@ Security ])); + propagatedBuildInputs = with pkgs; [ + ffmpeg_5-headless + ]; + # Additional environment variables can be set directly # MY_CUSTOM_VAR = "some value"; };