tracker: fixup i686 temporarily

Without causing rebuild on other platforms, as that would have to be
slowed down due to staging.
This commit is contained in:
Vladimír Čunát 2021-04-08 17:36:57 +02:00
parent 97cdea3f94
commit 0c39a0b800
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -27,7 +27,7 @@
, substituteAll , substituteAll
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation (rec {
pname = "tracker"; pname = "tracker";
version = "3.0.3"; version = "3.0.3";
@ -82,7 +82,8 @@ stdenv.mkDerivation rec {
"-Ddocs=true" "-Ddocs=true"
]; ];
doCheck = true; # https://gitlab.gnome.org/GNOME/tracker/-/issues/292#note_1075369
doCheck = !stdenv.isi686;
postPatch = '' postPatch = ''
patchShebangs utils/g-ir-merge/g-ir-merge patchShebangs utils/g-ir-merge/g-ir-merge
@ -133,3 +134,8 @@ stdenv.mkDerivation rec {
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }
// lib.optionalAttrs stdenv.isi686 {
# TMP: fatal error: libtracker-sparql/tracker-sparql-enum-types.h: No such file or directory
enableParallelBuilding = false;
}
)