shattered-pixel-dungeon: fix crash on startup
This also affects the shattered-pixel-dungeon variants/mods. Fixes #273261
This commit is contained in:
parent
3c1873efa9
commit
086f558b6d
1 changed files with 2 additions and 1 deletions
|
@ -13,6 +13,7 @@
|
|||
, gradle
|
||||
, perl
|
||||
, jre
|
||||
, libGL
|
||||
, libpulseaudio
|
||||
, makeDesktopItem
|
||||
, copyDesktopItems
|
||||
|
@ -104,7 +105,7 @@ in stdenv.mkDerivation (cleanAttrs // {
|
|||
install -Dm644 desktop/build/libs/desktop-*.jar $out/share/${pname}.jar
|
||||
mkdir $out/bin
|
||||
makeWrapper ${jre}/bin/java $out/bin/${pname} \
|
||||
--prefix LD_LIBRARY_PATH : ${libpulseaudio}/lib \
|
||||
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ libGL libpulseaudio ]} \
|
||||
--add-flags "-jar $out/share/${pname}.jar"
|
||||
|
||||
for s in 16 32 48 64 128 256; do
|
||||
|
|
Loading…
Reference in a new issue