Merge pull request #135451 from landorg/bugfix/bitwig-studio4

bitwig-studio: fix gtk file dialog

authored by Artturi and committed by GitHub da33a585 6f12ff7a

+5
+5
pkgs/applications/audio/bitwig-studio/bitwig-studio4.nix
··· 49 -not -name '*.so.*' \ 50 -not -name '*.so' \ 51 -not -name '*.jar' \ 52 -not -path '*/resources/*' | \ 53 while IFS= read -r f ; do 54 patchelf --set-interpreter "${stdenv.cc.bintools.dynamicLinker}" $f ··· 58 --suffix LD_LIBRARY_PATH : "${lib.strings.makeLibraryPath buildInputs}" 59 done 60 61 ''; 62 63 meta = with lib; {
··· 49 -not -name '*.so.*' \ 50 -not -name '*.so' \ 51 -not -name '*.jar' \ 52 + -not -name 'jspawnhelper' \ 53 -not -path '*/resources/*' | \ 54 while IFS= read -r f ; do 55 patchelf --set-interpreter "${stdenv.cc.bintools.dynamicLinker}" $f ··· 59 --suffix LD_LIBRARY_PATH : "${lib.strings.makeLibraryPath buildInputs}" 60 done 61 62 + find $out -type f -executable -name 'jspawnhelper' | \ 63 + while IFS= read -r f ; do 64 + patchelf --set-interpreter "${stdenv.cc.bintools.dynamicLinker}" $f 65 + done 66 ''; 67 68 meta = with lib; {