From 4b2b0f1425329e75799eb1f599156c8233ca07ea Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Sat, 30 Sep 2023 16:01:14 +0300 Subject: [PATCH] libreoffice: disable a test failing on aarch64 --- pkgs/applications/office/libreoffice/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/office/libreoffice/default.nix b/pkgs/applications/office/libreoffice/default.nix index 3b114516b54e..44d07503b2fa 100644 --- a/pkgs/applications/office/libreoffice/default.nix +++ b/pkgs/applications/office/libreoffice/default.nix @@ -383,6 +383,8 @@ in stdenv.mkDerivation (finalAttrs: { sed -i '/gb_LinkTarget_LDFLAGS/{ n; /rpath-link/d;}' solenv/gbuild/platform/unxgcc.mk find -name "*.cmd" -exec sed -i s,/lib:/usr/lib,, {} \; + '' + optionalString stdenv.isAarch64 '' + sed -e '/CPPUNIT_TEST(testStatisticalFormulasFODS);/d' -i './sc/qa/unit/functions_statistical.cxx' ''; makeFlags = [ "SHELL=${bash}/bin/bash" ];