tracker: backport fixes for SQLite 3.40

This commit is contained in:
Alyssa Ross 2022-11-23 11:04:19 +00:00 committed by Alyssa Ross
parent d54f37c561
commit d7a9f5f001

View file

@ -1,6 +1,7 @@
{ stdenv
, lib
, fetchurl
, fetchpatch
, gettext
, meson
, ninja
@ -38,6 +39,14 @@ stdenv.mkDerivation rec {
sha256 = "6p1BqfucK0KtgPwsgjJ7XHE9WUyWmwnhpJvmP7dPT64=";
};
patches = [
# Backport compatibility fix for newer SQLite.
(fetchpatch {
url = "https://gitlab.gnome.org/GNOME/tracker/-/merge_requests/552.patch";
sha256 = "1pmhhj47dbn654vb6a0kh5h6hw71lvaqxr141r60zrv5zx7m3sh9";
})
];
postPatch = ''
patchShebangs utils/data-generators/cc/generate
'';