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:
parent
97cdea3f94
commit
0c39a0b800
1 changed files with 8 additions and 2 deletions
|
@ -27,7 +27,7 @@
|
|||
, substituteAll
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
stdenv.mkDerivation (rec {
|
||||
pname = "tracker";
|
||||
version = "3.0.3";
|
||||
|
||||
|
@ -82,7 +82,8 @@ stdenv.mkDerivation rec {
|
|||
"-Ddocs=true"
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
# https://gitlab.gnome.org/GNOME/tracker/-/issues/292#note_1075369
|
||||
doCheck = !stdenv.isi686;
|
||||
|
||||
postPatch = ''
|
||||
patchShebangs utils/g-ir-merge/g-ir-merge
|
||||
|
@ -133,3 +134,8 @@ stdenv.mkDerivation rec {
|
|||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
// lib.optionalAttrs stdenv.isi686 {
|
||||
# TMP: fatal error: libtracker-sparql/tracker-sparql-enum-types.h: No such file or directory
|
||||
enableParallelBuilding = false;
|
||||
}
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue