nixpkgs/pkgs/development/libraries/drumstick/drumstick-plugins.patch
Orivej Desh a1c9c430bf drumstick: fix plugin lookup and enable SonivoxEAS and FluidSynth plugins
SonivoxEAS is enabled by building with PulseAudio.
2020-11-12 03:41:46 +00:00

13 lines
425 B
Diff

Make it look for its plugin in its own installation directory.
--- a/library/rt/backendmanager.cpp
+++ b/library/rt/backendmanager.cpp
@@ -159,6 +159,7 @@ namespace rt {
foreach(const QString& path, QCoreApplication::libraryPaths()) {
d->appendDir( path + QDir::separator() + QSTR_DRUMSTICK, result );
}
+ d->appendDir( "@out@/lib/drumstick", result );
return result;
}