Unverified Commit 95a8a243 authored by Nick Cao's avatar Nick Cao
Browse files

weston: raise neatvnc version bound to < 0.9.0

parent 91107bd5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -27,10 +27,10 @@ stdenv.mkDerivation rec {
  };

  postPatch = ''
    # raise neatvnc version bound to 0.8.0
    # raise neatvnc version bound to < 0.9.0
    # https://gitlab.freedesktop.org/wayland/weston/-/issues/890
    substituteInPlace libweston/backend-vnc/meson.build \
      --replace-fail "'neatvnc', version: ['>= 0.7.0', '< 0.8.0']" "'neatvnc', version: ['>= 0.7.0', '<= 0.8.0']"
      --replace-fail "'neatvnc', version: ['>= 0.7.0', '< 0.8.0']" "'neatvnc', version: ['>= 0.7.0', '< 0.9.0']"
  '';

  depsBuildBuild = [ pkg-config ];