Commit eba77405 authored by ProxyVT's avatar ProxyVT
Browse files

lite-xl: fix SDL3 dependency linking

parent 42cb7bb3
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -39,6 +39,12 @@ stdenv.mkDerivation {
    sdl3
  ];

  # Fix SDL3 static linking issue
  postPatch = ''
    substituteInPlace src/meson.build \
      --replace-fail "dependency('sdl3', static: true)" "dependency('sdl3', static: false)"
  '';

  mesonFlags = [
    "-Duse_system_lua=true"
  ];