Merge pull request #98794 from tomcur/fix-renoise-audiopluginserver

renoise: patch audio plugin server
gstqt5
Sandro 2021-01-18 17:28:11 +01:00 committed by GitHub
commit f2cbacbc4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

View File

@ -37,8 +37,6 @@ stdenv.mkDerivation rec {
mkdir -p $out/lib/
mv $out/AudioPluginServer* $out/lib/
cp renoise $out/renoise
for path in ${toString buildInputs}; do
@ -56,6 +54,13 @@ stdenv.mkDerivation rec {
--set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
--set-rpath ${mpg123}/lib:$out/lib \
$out/renoise
for path in $out/AudioPluginServer*; do
patchelf \
--set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
--set-rpath $out/lib \
$path
done
'';
meta = {