Skip to content

Commit 442263f

Browse files
committed
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.
1 parent cd16b1d commit 442263f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkgs/by-name/li/libtas/package.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
, lua5_3
1010
, qt5
1111
, file
12+
, binutils
1213
, makeDesktopItem
1314
}:
1415

@@ -39,7 +40,7 @@ stdenv.mkDerivation (finalAttrs: {
3940

4041
postFixup = ''
4142
wrapProgram $out/bin/libTAS \
42-
--suffix PATH : ${lib.makeBinPath [ file ]} \
43+
--suffix PATH : ${lib.makeBinPath [ file binutils ffmpeg ]} \
4344
--set-default LIBTAS_SO_PATH $out/lib/libtas.so
4445
'';
4546

0 commit comments

Comments
 (0)