Total noob here.
I am trying to run 3rd party application (PixInsight) and it looks like it is not able to find the QT libraries:
steam-run /opt/PixInsight/bin/PixInsight.sh
PixInsight Core 1.8.9-1 Ripley (x64)
Copyright (c) 2003-2022 Pleiades Astrophoto
This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem.
Available platform plugins are: eglfs (from /opt/PixInsight/bin/lib/qt-plugins/platforms), linuxfb (from /opt/PixInsight/bin/lib/qt-plugins/platforms), minimal (from /opt/PixInsight/bin/lib/qt-plugins/platforms)
, minimalegl (from /opt/PixInsight/bin/lib/qt-plugins/platforms), offscreen (from /opt/PixInsight/bin/lib/qt-plugins/platforms), vnc (from /opt/PixInsight/bin/lib/qt-plugins/platforms), wayland-egl (from /opt/Pi
xInsight/bin/lib/qt-plugins/platforms), wayland (from /opt/PixInsight/bin/lib/qt-plugins/platforms), wayland-xcomposite-egl (from /opt/PixInsight/bin/lib/qt-plugins/platforms), wayland-xcomposite-glx (from /opt/
PixInsight/bin/lib/qt-plugins/platforms), webgl (from /opt/PixInsight/bin/lib/qt-plugins/platforms), xcb (from /opt/PixInsight/bin/lib/qt-plugins/platforms), eglfs, linuxfb, minimal, minimalegl, offscreen, vnc,
wayland-egl, wayland, wayland-xcomposite-egl, wayland-xcomposite-glx, webgl, xcb.
/opt/PixInsight/bin/PixInsight.sh: line 40: 4017 Aborted (core dumped) /opt/PixInsight/bin/PixInsight
I have QT installed:
qt5.full
qt5Full
xorg.libXinerama
This is output of ldd on executable file, keep in mind that it has a shell wrapper:
ldd /opt/PixInsight/bin/PixInsight
linux-vdso.so.1 (0x00007ffebe773000)
libX11.so.6 => not found
libpthread.so.0 => /nix/store/yaz7pyf0ah88g2v505l38n0f3wg2vzdj-glibc-2.37-8/lib/libpthread.so.0 (0x00007fef291b9000)
libssl.so.1.0.0 => not found
libcrypto.so.1.0.0 => not found
libQt5WebEngine.so.5 => not found
libQt5WebEngineCore.so.5 => not found
libQt5WebEngineWidgets.so.5 => not found
libQt5PrintSupport.so.5 => not found
libQt5X11Extras.so.5 => not found
libQt5Widgets.so.5 => not found
libQt5Gui.so.5 => not found
libQt5Svg.so.5 => not found
libQt5Network.so.5 => not found
libQt5Core.so.5 => not found
libcudart.so.11.0 => not found
libmozjs-24.so => not found
libstdc++.so.6 => not found
libm.so.6 => /nix/store/yaz7pyf0ah88g2v505l38n0f3wg2vzdj-glibc-2.37-8/lib/libm.so.6 (0x00007fef290d3000)
libmvec.so.1 => /nix/store/yaz7pyf0ah88g2v505l38n0f3wg2vzdj-glibc-2.37-8/lib/libmvec.so.1 (0x00007fef27107000)
libgcc_s.so.1 => /nix/store/0fvh2p4irz0lw0cpy2ll1rf2hbhbym3g-xgcc-12.2.0-libgcc/lib/libgcc_s.so.1 (0x00007fef270e6000)
libc.so.6 => /nix/store/yaz7pyf0ah88g2v505l38n0f3wg2vzdj-glibc-2.37-8/lib/libc.so.6 (0x00007fef26f00000)
/lib64/ld-linux-x86-64.so.2 => /nix/store/yaz7pyf0ah88g2v505l38n0f3wg2vzdj-glibc-2.37-8/lib64/ld-linux-x86-64.so.2 (0x00007fef291c0000)
Please help
Alex