Commit 92fb22dc authored by Alyssa Ross's avatar Alyssa Ross
Browse files

carla: add missing lib for carla-bridge-lv2-gtk2

Previously, attempting to open calf plugin UIs in Carla would fail,
due to this library not being found when Carla tried to dlopen() it.
parent d0e0f196
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -61,6 +61,10 @@ stdenv.mkDerivation (finalAttrs: {
        filename="$(basename -- "$file")"
        substituteInPlace "$file" --replace '--with-appname="$0"' "--with-appname=\"$filename\""
    done
  '' + lib.optionalString withGtk2 ''
    # Will try to dlopen() libgtk-x11-2.0 at runtime when using the bridge.
    substituteInPlace source/bridges-ui/Makefile \
        --replace '$(CXX) $(OBJS_GTK2)' '$(CXX) $(OBJS_GTK2) -lgtk-x11-2.0'
  '';

  dontWrapQtApps = true;