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 49 -not -name '*.so.*' \ 50 50 -not -name '*.so' \ 51 51 -not -name '*.jar' \ 52 + -not -name 'jspawnhelper' \ 52 53 -not -path '*/resources/*' | \ 53 54 while IFS= read -r f ; do 54 55 patchelf --set-interpreter "${stdenv.cc.bintools.dynamicLinker}" $f ··· 58 59 --suffix LD_LIBRARY_PATH : "${lib.strings.makeLibraryPath buildInputs}" 59 60 done 60 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 61 66 ''; 62 67 63 68 meta = with lib; {