From 92fb22dc0ac91ece2232f7205217bad187a921d4 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Mon, 6 Nov 2023 14:05:22 +0100 Subject: [PATCH] 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. --- pkgs/applications/audio/carla/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/applications/audio/carla/default.nix b/pkgs/applications/audio/carla/default.nix index 589808c5c2e6..a6874390f0ab 100644 --- a/pkgs/applications/audio/carla/default.nix +++ b/pkgs/applications/audio/carla/default.nix @@ -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;