libTAS needs to be run under X11 to capture inputs. Since libTAS is a QT app, it can launch in Wayland though. Thus, add an override option (enabled by default) which passes a `QT_QPA_PLATFORM=xcb` environment variable to force QT to run on X11.
108 lines
2.2 KiB
Nix
108 lines
2.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
fetchurl,
|
|
autoreconfHook,
|
|
pkg-config,
|
|
SDL2,
|
|
alsa-lib,
|
|
ffmpeg,
|
|
lua5_4,
|
|
qt5,
|
|
xorg,
|
|
file,
|
|
binutils,
|
|
makeDesktopItem,
|
|
|
|
# Forces libTAS to run in X11.
|
|
# Enabled by default because libTAS does not support Wayland.
|
|
withForceX11 ? true,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "libtas";
|
|
version = "1.4.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "clementgallet";
|
|
repo = "libTAS";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-/hyKJ8HGLN7hT+9If/lcp0C7GnhJMRpc7EKDgA1kQcI=";
|
|
};
|
|
patches = [
|
|
# Fixes `undefined symbol: SDL_Log` errors
|
|
(fetchurl {
|
|
url = "https://github.com/clementgallet/libTAS/commit/779ff0fb0f3accfc62949680d85ecf96b28d18ef.patch";
|
|
hash = "sha256-xAaTWIXt8FkMu6GE5mBWtLypROFZ1aEqmBTtG+6rTWk=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
qt5.wrapQtAppsHook
|
|
pkg-config
|
|
];
|
|
buildInputs = [
|
|
SDL2
|
|
alsa-lib
|
|
ffmpeg
|
|
lua5_4
|
|
qt5.qtbase
|
|
];
|
|
|
|
configureFlags = [
|
|
"--enable-release-build"
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/lib
|
|
mv $out/bin/libtas*.so $out/lib/
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
postFixup = ''
|
|
wrapProgram $out/bin/libTAS \
|
|
--suffix PATH : ${
|
|
lib.makeBinPath [
|
|
file
|
|
binutils
|
|
ffmpeg
|
|
]
|
|
} \
|
|
--suffix LD_LIBRARY_PATH : ${
|
|
lib.makeLibraryPath [
|
|
xorg.libXi
|
|
ffmpeg.lib
|
|
]
|
|
} \
|
|
${lib.optionalString withForceX11 "--set QT_QPA_PLATFORM xcb"} \
|
|
--set-default LIBTAS_SO_PATH $out/lib/libtas.so
|
|
'';
|
|
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = "libTAS";
|
|
desktopName = "libTAS";
|
|
exec = "libTAS %U";
|
|
icon = "libTAS";
|
|
startupWMClass = "libTAS";
|
|
keywords = [ "libTAS" ];
|
|
})
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://clementgallet.github.io/libTAS/";
|
|
changelog = "https://github.com/clementgallet/libTAS/blob/${finalAttrs.src.rev}/CHANGELOG.md";
|
|
description = "GNU/Linux software to give TAS tools to games";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with maintainers; [ skyrina ];
|
|
mainProgram = "libTAS";
|
|
platforms = [
|
|
"i686-linux"
|
|
"x86_64-linux"
|
|
];
|
|
};
|
|
})
|