fix: add more shared objects for sirils plugins
This commit is contained in:
+24
-1
@@ -13,7 +13,30 @@ let
|
|||||||
nativeBuildInputs = [ pkgs.makeWrapper ];
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
||||||
postBuild = ''
|
postBuild = ''
|
||||||
wrapProgram $out/bin/siril \
|
wrapProgram $out/bin/siril \
|
||||||
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ pkgs.stdenv.cc.cc.lib pkgs.zlib ]}
|
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath (with pkgs; [
|
||||||
|
stdenv.cc.cc.lib # libstdc++ / libgcc_s / libgomp (numpy etc.)
|
||||||
|
zlib
|
||||||
|
zstd # libzstd.so.1 (PyQt6)
|
||||||
|
libGL # libGL.so.1 (PyQt6)
|
||||||
|
# PyQt6 (VeraLux) — Qt bundles xcb support so it needs these even
|
||||||
|
# on Wayland; libxkbcommon is the keymap lib used by Wayland too.
|
||||||
|
glib
|
||||||
|
fontconfig
|
||||||
|
freetype
|
||||||
|
dbus
|
||||||
|
libxkbcommon
|
||||||
|
# Qt platform plugins: the wayland plugin (libqwayland.so) needs the
|
||||||
|
# wayland client libs; the xcb fallback needs libxcb-cursor.so.0.
|
||||||
|
wayland # libwayland-client/cursor/egl (wayland plugin)
|
||||||
|
libxcb-cursor # libxcb-cursor.so.0 (xcb plugin)
|
||||||
|
libx11
|
||||||
|
libxcb
|
||||||
|
libxcb-util
|
||||||
|
libxcb-wm
|
||||||
|
libxcb-image
|
||||||
|
libxcb-keysyms
|
||||||
|
libxcb-render-util
|
||||||
|
])}
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
|
|||||||
Reference in New Issue
Block a user