From 246321b424f3f23a7a7e8dc11ec4fb46a666887a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maarit=20H=C3=A4rk=C3=B6nen?= Date: Thu, 21 Nov 2024 11:04:09 +0200 Subject: [PATCH] Add camera related tools for test automation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maarit Härkönen --- modules/common/development/debug-tools.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/common/development/debug-tools.nix b/modules/common/development/debug-tools.nix index 0d01e1a1fd..c35ba501d2 100644 --- a/modules/common/development/debug-tools.nix +++ b/modules/common/development/debug-tools.nix @@ -55,8 +55,8 @@ in iperf tree file - # to build ghaf on target + # to build ghaf on target git # Grpc testing @@ -92,6 +92,9 @@ in # Build VLC only on x86 ++ lib.optionals (config.nixpkgs.hostPlatform.system == "x86_64-linux") (rmDesktopEntries [ pkgs.vlc + # Camera related tools: + pkgs.ffmpeg_7 + pkgs.v4l-utils ]); }; }