Unverified Commit 7c6bec79 authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

lite-xl: fix SDL3 dependency linking (#452287)

parents 10e38fde eba77405
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"
  ];