From 442263f4dceee65cf25b90771224dcc5e376bafe Mon Sep 17 00:00:00 2001 From: Ophestra Date: Thu, 13 Feb 2025 10:08:03 +0900 Subject: [PATCH] libtas: add binutils and ffmpeg to PATH libTAS invokes readelf and ffmpeg, it does not crash when they are not present, however certain features like video encoding stop working without any error message showing up in the GUI. --- pkgs/by-name/li/libtas/package.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/li/libtas/package.nix b/pkgs/by-name/li/libtas/package.nix index 7a3ab2e7a155..f36e9391a07d 100644 --- a/pkgs/by-name/li/libtas/package.nix +++ b/pkgs/by-name/li/libtas/package.nix @@ -9,6 +9,7 @@ , lua5_3 , qt5 , file +, binutils , makeDesktopItem }: @@ -39,7 +40,7 @@ stdenv.mkDerivation (finalAttrs: { postFixup = '' wrapProgram $out/bin/libTAS \ - --suffix PATH : ${lib.makeBinPath [ file ]} \ + --suffix PATH : ${lib.makeBinPath [ file binutils ffmpeg ]} \ --set-default LIBTAS_SO_PATH $out/lib/libtas.so '';