Skip to content

Commit

Permalink
Merge pull request #141796 from LibreCybernetics/patch-tracker
Browse files Browse the repository at this point in the history
tracker: patch failing test due to float comparison
  • Loading branch information
jtojnar authored Oct 16, 2021
2 parents c4c85b5 + b0ed9c8 commit d4aa99a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pkgs/development/libraries/tracker/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{ stdenv
, lib
, fetchurl
, fetchpatch
, gettext
, meson
, ninja
Expand Down Expand Up @@ -44,6 +45,13 @@ stdenv.mkDerivation rec {
src = ./fix-paths.patch;
inherit asciidoc;
})
] ++ lib.optionals (stdenv.hostPlatform.isi686) [
# Upstream: https://gitlab.gnome.org/GNOME/tracker/-/issues/332
(fetchpatch {
name = "i686-test.patch";
url = "https://gitlab.gnome.org/GNOME/tracker/-/commit/af707181a2c492a794daec7ce3f3062d67ffd9dc.patch";
sha256 = "sha256-KOdkTy79w3oiQILrPG00UVrv+VBjAk4Y868I8jtifqk=";
})
];

nativeBuildInputs = [
Expand Down

0 comments on commit d4aa99a

Please sign in to comment.